-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.32 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
<!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>Tạo Trình Phát Nhạc Sử Dụng HTML CSS và JavaScript</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
</head>
<body>
<audio src="" id="audio"></audio>
<div class="container">
<h1 class="song-name">Song name 1</h1>
<p class="artist">Artist 1</p>
<div class="box-disk">
</div>
<div class="music-slider">
<input type="range" value="0" class="seek-bar"/>
<span class="current-time">00:00</span>
<span class="music-time">00:00</span>
</div>
<div class="controls">
<button class="btn btnback"><i class="fa fa-chevron-left" aria-hidden="true"></i></button>
<button class="btn-play pause">
<span></span>
<span></span>
</button>
<button class="btn btnnext"><i class="fa fa-chevron-right" aria-hidden="true"></i></button>
</div>
</div>
<script src="song.js"></script>
<script src="Jscript.js"></script>
</body>
</html>