-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
36 lines (35 loc) · 1.19 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Projects Hub</title>
<link rel="stylesheet" href="styles2.css">
</head>
<body>
<audio id="background-music" loop autoplay>
<source src="your_music_file.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div class="container">
<header>
<h1>Welcome to My Projects Hub</h1>
<p>Explore my latest projects and webpages.</p>
</header>
<main>
<section>
<h2>Projects</h2>
<ul class="project-list">
<li><a href="your_project_1.html">Book Lending Platform</a></li>
<li><a href="your_project_2.html">Project 2 Title</a></li>
<li><a href="your_project_3.html">Project 3 Title</a></li>
<li><a href="your_project_4.html">Project 4 Title</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Atin Sharma | All rights reserved.</p>
</footer>
</div>
</body>
</html>