-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotify.html
50 lines (50 loc) · 1.19 KB
/
spotify.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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Spotify Clone</title>
</head>
<body>
<header>
<div id="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Browse</a></li>
<li><a href="#">Radio</a></li>
<li><a href="#">Your Library</a></li>
</ul>
<form>
<input type="text" placeholder="Search for artists, songs, or podcasts">
<button type="submit">Search</button>
</form>
</div>
</header>
<main>
<h1>Your Library</h1>
<ul id="music-library">
<li>
<img src="album-art.jpg" alt="Album art">
<h2>Song title</h2>
<p>Artist name</p>
</li>
<li>
<img src="album-art.jpg" alt="Album art">
<h2>Song title</h2>
<p>Artist name</p>
</li>
<li>
<img src="album-art.jpg" alt="Album art">
<h2>Song title</h2>
<p>Artist name</p>
</li>
</ul>
</main>
<footer>
<div id="player-bar">
<button id="previous-button">Previous</button>
<button id="play-pause-button">Play</button>
<button id="next-button">Next</button>
</div>
</footer>
</body>
</html>