-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.46 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/b97db328cf.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="main-content">
<audio id="player">
<source src="Get_Up.mp3" type="audio/mp3">
</audio>
<!-- mình xin phép viết trước để đỡ tốn tgian. các bạn ấn pause để
làm theo nhé-->
<div id="audio-player">
<div class="controls">
<!--tạo 1 cái progress bar-->
<div id="progressbar">
<div id="progress"></div>
</div>
<div class="time">
<span id="curtime">00:00</span>
<span>/</span>
<span id="durtime">00:00</span>
</div>
<div class="button-gr">
<span><i id="playbutton" class="far fa-play-circle"></i></span>
<span><i id="loop" class="fas fa-undo"></i></span>
<span><i id="volume" class="fas fa-volume-up"></i></span>
</div>
<!-- ở đây gồm 3 phần nhỏ nhé -->
</div>
</div>
</div>
</body>
<script src="main.js"></script>
</html>