Skip to content

Commit 58c2cbf

Browse files
authored
Add files via upload
1 parent 6ec2a75 commit 58c2cbf

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Hello Website</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
display: flex;
11+
justify-content: center;
12+
align-items: center;
13+
height: 100vh;
14+
margin: 0;
15+
background-color: #f0f0f0;
16+
}
17+
h1 {
18+
color: #333;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
<h1>Hello, welcome to our home!</h1>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)