-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 1.02 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
<!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>Custom Mini Audio Player</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous">
</head>
<body>
<audio class="player__audio" src="Dont_You_Remember.mp3"></audio>
<div class="player">
<div class="control">
<i class="fas fa-play player__play"></i>
</div>
<div class="player__info">
Don't You Remember - Adele
<div class="player__bar">
<div class="player__progress"></div>
</div>
</div>
<div class="player__current">0:00</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>