forked from CSCult/custom-media-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.html
78 lines (78 loc) · 3.88 KB
/
music.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
<!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">
<title>Sur - Your destination to music player</title>
<link rel="stylesheet" href="styling.css">
</head>
<body>
<nav>
<ul>
<li class = "brand"><img src = "logo.jpg" alt = "music">Sur </li>
<li>Home</li>
<li><a href="ABOUT_ME.html">About</a></li>
</ul>
</nav>
<div class="container">
<div class="songlist">
<h1>Best Songs</h1>
<div class="songitemcontainer">
<div>
<div class="songItem" class = "songitemplay">
<img src = "5468.jpg" alt="1">
<span class = "songname"><b>Radha</b></span>
<span class="songlistplay"><span class = "timestamp">03:16 <i class="fa-solid far fa-3x-rectangle-wide"></i>
</div>
<div class="songItem" class = "songitemplay">
<img src = "5337.jpg" alt="1">
<span class = "songname"><b>Illahi</b></span>
<span class="songlistplay" id = "1"><span class = "timestamp">03:51<!--<i class="far fa-3x duotone fa-circle-play"></i>---></span></span>
</div>
<div class="songItem" class = "songitemplay">
<img src = "5337.jpg" alt="1">
<span class = "songname"><b>Chunar</b></span>
<span class="songlistplay" id = "2"><span class = "timestamp">04:29<!--<i class="far fa-3x duotone fa-circle-play"></i>---></span></span>
</div>
<div class="songItem" class = "songitemplay">
<img src = "5341.jpg" alt="1">
<span class = "songname"><b>Ishare Tere</b></span>
<span class="songlistplay" id = "3"><span class = "timestamp">03:09<!--<i class="far fa-3x duotone fa-circle-play"></i>---></span></span>
</div>
<div class="songItem" class = "songitemplay">
<img src = "5223.jpg" alt="1">
<span class = "songname"><b>Akh Lad Jaave</b></span>
<span class="songlistplay" id = "4"><span class = "timestamp">03:00<!--<i class="far fa-3x duotone fa-circle-play"></i>---></span></span>
</div>
<div class="songItem" class = "songitemplay">
<img src = "5267.jpg" alt="1">
<span class = "songname"><b>Chogada</b></span>
<span class="songlistplay" id = "5"><span class = "timestamp">04:09<!--<i class="far fa-3x duotone fa-circle-play"></i>---></span></span>
</div>
<div class="songItem" class = "songitemplay">
<img src = "5213.jpg" alt="1">
<span class = "songname"><b>Aaj Dil Shayarana</b></span>
<span class="songlistplay" id = "6"><span class = "timestamp">04:21<!--<i class="far fa-3x duotone fa-circle-play"></i>-</span></span>--->
</div>
</div>
</div>
<div class="songlists"></div>
<div class="songbanner"></div>
</div>
</div>
<div class="Bottom">
<input type="range" name="range" id="myprogressbar" value = "0" min="0" max="100">
<div class="icons">
<i class="fa-solid fa-3x duotone fa-backward-step" id = "previous"></i>
<i class="far fa-3x duotone fa-circle-play" id ="masterplay"></i>
<i class="fa-solid fa-3x duotone fa-forward-step" id = "next"></i>
</div>
<div class="songinfo">
<img src = "playing.gif" width = "200px" alt="" id = "gif">
</div>
</div>
<script src="https://kit.fontawesome.com/d708c464d4.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>