-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.75 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 1.75 KB
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
<!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">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<title>music player</title>
</head>
<body>
<div class="content">
<div class="top-bar">
<span class="material-symbols-rounded">expand_more</span>
<span>Now Playing</span>
<span class="material-symbols-rounded">more_horiz</span>
</div>
<div class="image-wrapper">
<div class="music-image">
<img src="images/img1.jpg">
</div>
</div>
<div class="music-titles">
<p class="name">MARSHMELLO-FLY</p>
<p class="artist">MARSHMELLO</p>
</div>
<div class="progress-details">
<div class="progress-bar">
<span></span>
</div>
<div class="time">
<span class="current">0:00</span>
<span class="final">5:30</span>
</div>
</div>
<div class="control-btn">
<span class="material-symbols-rounded" id="repeat">repeat</span>
<span class="material-symbols-rounded" id="prev">skip_previous</span>
<div class="play-pause">
<span class="material-symbols-rounded">play_arrow</span>
</div>
<span class="material-symbols-rounded" id="next">skip_next</span>
<span class="material-symbols-rounded" id="shuffle">shuffle</span>
</div>
</div>
<audio src="music/music1.mp3" class="main-song"></audio>
<script src="js/playlist.js"></script>
<script src="js/script.js"></script>
</body>
</html>