-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathhomepage.html
48 lines (40 loc) · 1.1 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Homepage</title>
<link rel="stylesheet" href="styles.css"> <!-- You can link to your CSS file here -->
</head>
<body>
<header>
<h1>Welcome to My Homepage</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#aa">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>About Me</h2>
<p>This is a brief description of myself and what I do.</p>
</section>
<section>
<h2>Services</h2>
<ul>
<li>Web Design</li>
<li>Graphic Design</li>
<li>Content Writing</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 My Homepage</p>
</footer>
</body>
</html>