-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (94 loc) · 3.24 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
<!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="style.css">
<title>Spotify - Music Player</title>
</head>
<body>
<div class="banner">
<div class="left-banner">
<img class="left-img" alt="left-banner-img">
<div class="heading">
<h1></h1>
<p></p>
</div>
</div>
</div>
<div class="main-section">
<div class="controls" onclick="playaudio()" id="play-pause"><img class="play-button"src="images/play-button.svg" alt="play-image"></div>
<audio id="song"></audio>
<table>
<thead>
<th class="song-number">#</th>
<th class="song-title">Title</th>
<th class="song-artist">Artist</th>
<th class="song-duration">Duration</th>
</thead>
<tr id="song1" onclick="playAll(1)">
<td>1</td>
<td>Mike Posner - I took a pill in Ibiza (Cover)</td>
<td>Ishaan Kaushik</td>
<td>03:46</td>
</tr>
<tr id="song2" onclick="playAll(2)">
<td>2</td>
<td>Ghar (Cover)</td>
<td>Ishaan Kaushik</td>
<td>03:47</td>
</tr>
<tr id="song3" onclick="playAll(3)">
<td>3</td>
<td>Kahi to hogi woh (Cover)</td>
<td>Ishaan Kaushik</td>
<td>03:40</td>
</tr>
<tr id="song4" onclick="playAll(4)">
<td>4</td>
<td>Kasoor (Cover)</td>
<td>Ishaan Kaushik</td>
<td>02:43</td>
</tr>
<tr id="song5" onclick="playAll(5)">
<td>5</td>
<td>Tu Hai Kahan</td>
<td>Ishaan Kaushik</td>
<td>02:59</td>
</tr>
<tr id="song6" onclick="playAll(6)">
<td>6</td>
<td>Baarishein - Anuv Jain (Cover)</td>
<td>Ishaan Kaushik</td>
<td>03:15</td>
</tr>
<tr id="song7" onclick="playAll(7)">
<td>7</td>
<td>Waqt Ki Baatein (Cover)</td>
<td>Ishaan Kaushik</td>
<td>02:57</td>
</tr>
<tr id="song8" onclick="playAll(8)">
<td>8</td>
<td>Lovely feat. Anika Vidyarthi (Cover)</td>
<td>Ishaan Kaushik</td>
<td>02:53</td>
</tr>
<tr id="song9" onclick="playAll(9)">
<td>9</td>
<td>Let me down slowly - Alec Benjamin (Cover)</td>
<td>Ishaan Kaushik</td>
<td>02:55</td>
</tr>
<tr id="song10" onclick="playAll(10)">
<td>10</td>
<td>Jee Le Zara - (Cover)</td>
<td>Ishaan Kaushik</td>
<td>02:56</td>
</tr>
</table>
</div>
<script src="script.js"></script>
</body>
</html>