Skip to content

Commit e194c23

Browse files
authored
Create index.html
1 parent a39b641 commit e194c23

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 My Web!</title>
7+
<style>
8+
body {
9+
display: flex;
10+
justify-content: center;
11+
align-items: center;
12+
height: 100vh;
13+
margin: 0;
14+
font-family: Arial, sans-serif;
15+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
16+
}
17+
h1 {
18+
color: white;
19+
font-size: 3rem;
20+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
21+
}
22+
</style>
23+
</head>
24+
<body>
25+
<h1>Hello My Web!</h1>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)