-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.25 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
<!DOCTYPE html>
<html>
<head>
<title> My First Web Page</title>
</head>
<body>
<!-- semantic html -->
<!-- header-->
<header>
<h1>Welcome to My Web Page </h1>
<!-- navigation bar-->
<nav>
<a href="/">Home</a>
<a href="#">About</a>
<a href="#">Contact Us</a>
</nav>
</header>
<!-- main content-->
<main>
<article>
<p> This is my first web page.</p>
<p> Isn't this amazing!</p>
</article>
<section>
<h2> My Favorite Hobbies </h2>
<ul>
<li>Reading</li>
<li>Cycling</li>
<li>Cooking</li>
</ul>
</section>
<aside>
<h3>Quick Links</h3>
<a href="#">Additional Resources</a>
</aside>
</main>
<footer>
<p>© 2025. Halima. All Rights Reserved.</p>
</footer>
</body>
</html>