-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>Audio-Player</title>
<link rel='icon' type='image/x-icon' href='favicon.ico' />
<link rel='stylesheet' type='text/css' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css' />
<link rel='stylesheet' type='text/css' href='style.css' />
</head>
<body>
<div class='player-container'>
<!-- audio -->
<div class='image-container'>
<img src="./images/The Qur'ān Changed Me.jpg" alt='cover' />
</div>
<h2 id='title'>The Qur'ān Changed Me</h2>
<h3 id='artist'>Khālid Maḥjūb</h3>
<audio src="./audio/The Qur'ān Changed Me.mp3"></audio>
<!-- progress -->
<div id='progress-container' class='progress-container'>
<div id='progress' class='progress'></div>
<div class='duration-wrapper'>
<span id='current-time'>0:00</span>
<span id='duration'>7:19</span>
</div>
</div>
<!-- controls -->
<div class='player-controls'>
<div>
<i id='previous' class='fas fa-step-backward' title='previous'></i>
<i id='backWard' class='fas fa-backward' title='backWard'></i>
<i id='play' class='fas fa-play main-button' title='play/pause'></i>
<i id='forWard' class='fas fa-forward' title='forWard'></i>
<i id='next' class='fas fa-step-forward' title='next'></i>
</div>
</div>
</div>
<script src='script.js'></script>
</body>
</html>