-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML
More file actions
58 lines (57 loc) · 2.42 KB
/
HTML
File metadata and controls
58 lines (57 loc) · 2.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify- The Ultimate Soundtrack of Your life</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class="brand"><img src = "spotifylogo.png" alt = " Spotify "> Spotify</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<div
class = "container">
<div class="SongList">
<h1>Best Of Alan Walker</h1>
<div class = "songItemContainer">
<div
class="songItem">
<img src ="faded.jpg" alt = "1">
<span class = "songName">Faded </span>
<span class="songlistplay"><span class = "timestamp">3:36 <i id = "1" class="far songItemPlay fa-play-circle"></i></span></i></span>
</div>
<div class="songItem">
<img src ="alone.jpg" alt = "1">
<span class ="songName"> Alone</span>
<span class="songlistplay"><span class = "timestamp">3:00 <i id = "2" class="far songItemPlay fa-play-circle"></i></span></i></span>
</div>
<div class="songItem">
<img src ="lily.jpg" alt = "1">
<span class ="songName"> Lily</span>
<span class="songlistplay"><span class = "timestamp">2:59 <i id = "3" class="far songItemPlay fa-play-circle"></i></span></i></span>
</div>
</div>
</div>
</div>
<div class="SongBanner"></div>
</div>
<div class="bottom">
<input type="range" name="range" id = "myProgressBar" min="0" value="0" max="100">
<div class="icons">
<i class="fas fa-3x fa-step-backward" id = "previous"></i>
<i class="fas fa-3x fa-play-circle" id = "masterPlay"></i>
<i class="fas fa-3x fa-step-forward" id = "next"></i>
</div>
<div class="songInfo">
<img src = "spotify.gif " width="72px" alt="" id="gif">From Your PLaylist
</div>
</div>
<script src="https://kit.fontawesome.com/5f59d727b1.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>