-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Music Player</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>My Music Player</h1>
</header>
<main>
<div class="player">
<div class="cover-art">
<img src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.postermywall.com%2Findex.php%2Fart%2Ftemplate%2Ff4373773b6a4babb5a33af50b3f4725e%2Fcold-night-album-cover-design-template&psig=AOvVaw0HTlIrQVdgqWLFRH94P1mR&ust=1697269313159000&source=images&cd=vfe&opi=89978449&ved=0CBEQjRxqFwoTCLiEpIfD8oEDFQAAAAAdAAAAABAD" alt="Album Cover">
</div>
<div class="track-info">
<h2>Song Title</h2>
<p>Artist Name</p>
</div>
<div class="controls">
<button id="play-pause">Play</button>
<button id="next">Next</button>
<button id="prev">Previous</button>
</div>
</div>
</main>
<footer>
<div class="progress-bar">
<div class="progress"></div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>