-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (100 loc) · 4.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify -Your Favourite Music is Here</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class="brand"><img src="logo.png" alt="Spotify">Spotify</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<div class="container">
<div class="songlist">
<h1>Best of Hindi songs</h1>
<div class="songItemContainer">
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="0"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="1"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="2"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="3"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="4"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="5"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="6"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="7"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="8"></i></span></span>
</div>
<div class="songItem">
<img alt="1">
<span class="songName">Let me Love You</span>
<span class="songlistplay"><span class="timestamp">05:35<i
class="fa-regular fa-1x fa-circle-play songItemPlay" id="9"></i></span></span>
</div>
</div>
</div>
<div class="songbanner"></div>
</div>
<div class="bottom">
<input type="range" name="range" id="Progressbar" min="0" max="100" value="0">
<div class="icon">
<i class="fa-solid fa-2x fa-backward-step" id="next"></i>
<i class="fa-regular fa-2x fa-circle-play" id="masterPlay"></i>
<i class="fa-solid fa-2x fa-forward-step" id="previous"></i>
</div>
<div class="songInfo">
<img src="./playing.gif" width="42px" alt="gif" id="gif"><span id="masterSongName">Ban Ja Tu Meri Rani</span>
</div>
</div>
<!-- Scripting -->
<script src="https://kit.fontawesome.com/cff80723f3.js" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>