-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (112 loc) · 4.45 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spotify-Dance to the rhythm of your heart</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class = "brand"><img src="/images/logo.png" alt="Spotify">Spotify</li>
<li>Home</li>
<li>Search</li>
<li>Your Library</li>
<li>About</li>
</ul>
</nav>
<div class="container">
<div class="songList">
<h1>Best of NCS- No Copyright sounds</h1>
<div class="songItemContainer">
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="1" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="2" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="3" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="4" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="5" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="6" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<div class="songItem">
<img alt="song cover">
<span class="songName">Let me love you</span>
<span class="songListPlay">
<span class="timestamp">
05:20
<i id="7" class="fas songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
</div>
</div>
<div class="songBanner"></div>
</div>
<div class="bottom">
<div class="icons">
<!-- fontawesome 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="/images/playing2.gif" id="gif" width="50px" height="30px" >
<p id="masterSongName" > </p>
</div>
<input class="seek" id="myProgressBar" min="0" data-seek="" type="range" step="0.00001">
</div>
<script src="https://kit.fontawesome.com/26504e4a1f.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>