forked from Aryamanz29/Web-Ideas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.21 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
<!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>My Music Player</title>
<!-- to remove the favicon error-->
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="style.css">
</head>
<body>
<audio src="" id="audio"></audio>
<div class="music-player">
<h1 class="music-name">song one</h1>
<p class="artist-name">Artist</p>
<div class="disc"></div>
<div class="song-slider">
<input type="range" value="0" class="seek-bar">
<span class="current-time">00:00</span>
<span class="song-duration">00:00</span>
</div>
<div class="controls">
<button class="btn backward-btn"> <img src="Images/pre.png" alt="pre"></button>
<button class="play-btn pause">
<span> </span>
<span> </span>
</button>
<button class="btn forward-btn"> <img src="Images/nxt.png" alt="next"></button>
</div>
</div>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>