-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (96 loc) · 5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,600&family=Ubuntu:ital,wght@1,300;1,400;1,500&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/logo.png" type="image/x-icon">
<title>Spotify Lite </title>
</head>
<body>
<nav>
<ul>
<li class="brand"><img class="logo" src="images/logo.png" alt="Spotify">  Spotify</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<div class="container">
<div class="songList">
<h1>Album Will Appear Here</h1>
<div class="songItemContainer">
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '0'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '1'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '2'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '3'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '4'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '5'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '6'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '7'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '8'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="images/1.jpg" alt="">
<span class="songName">Let Me Love You</span>
<span class="songListPlay"><span class="timeStamp">05:34 <i id = '9'class="far songItemPlay fa-play-circle"></i></span></span>
</div>
</div>
</div>
<div class="banner"></div>
</div>
<div class="bottom">
<div class="songInfo">
<img src="images/playing.gif" id ='gif' width="60px" alt="">
<span class="songNameBottom" id="songNameBottom"> Memories - Maroon 5</span>
</div>
<div class="seekbar">
<input type="range" name="range" id="progressBar" value="0" min="0" max="100">
<div class="icons">
<!-- fontawesome icons -->
<i class="fas fa-2x fa-step-backward" id='previous'></i>
<i class="far fa-2x fa-play-circle" id= 'masterPlay'></i>
<i class="fas fa-2x fa-step-forward" id='next'></i>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/6468bcecfe.js" crossorigin="anonymous"></script>
<script type='module' src="script.js"></script>
</body>
</html>