-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Web Info Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
}
header {
text-align: center;
padding: 10px;
background-color: #f2f2f2;
}
main {
margin-top: 20px;
}
footer {
margin-top: 20px;
text-align: center;
padding: 10px;
background-color: #f2f2f2;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Web Info Page</h1>
</header>
<main>
<section>
<h2>About Me</h2>
<p>Hello! I'm [Your Name], and this is my basic information page. Feel free to explore and learn more about me.</p>
</section>
<section>
<h2>My Interests</h2>
<p>I am interested in [Your Interests]. Whether it's technology, arts, or sports, I enjoy exploring various aspects of life.</p>
</section>
<section>
<h2>Contact Information</h2>
<p>You can reach me via email at <a href="mailto:[email protected]">[email protected]</a>.</p>
</section>
</main>
<footer>
<p>© 2023 My Web Info Page</p>
</footer>
</body>
</html>