-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (35 loc) · 1.08 KB
/
Copy pathabout.html
File metadata and controls
36 lines (35 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Music Player</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="bg-gray-800 shadow-md py-4 px-6">
<div class="flex justify-between items-center">
<div class="text-xl font-bold text-gray-200">
JSPlayer
</div>
<ul class="flex items-center space-x-4">
<li><a href="index.html" class="text-gray-300 hover:text-gray-100">Home</a></li>
<li><a href="about.html" class="text-gray-300 hover:text-gray-100">About</a></li>
<li><a href="#" class="text-gray-300 hover:text-gray-100">Contact</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section>
<h1>About JSPlayer</h1>
</section>
</main>
<footer>
<p>© 2023 JSPlayerr</p>
</footer>
</body>
</html>