-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (49 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Projects | Mp3 Player</title>
</head>
<body>
<header>
<h2 class="song-title">
Stuck
</h2>
<h5 class="song-author">
Ollie
</h5>
</header>
<main>
<div class="container">
<div class="lyrics-container">
<span class="lyrics">
</span>
</div>
<div class="cover-container noSelect">
<img src="./images/Ollie - Stuck.jpg" alt="cover-image" class="cover-img" />
</div>
<div class="progressbar-container noSelect">
<div class="progressbar"></div>
</div>
<audio src="mp3/Ollie - Stuck.mp3" id="audio"></audio>
<div class="navigation-btn-container noSelect">
<button class="btn btn-prev">
<i class="fas fa-backward"></i>
</button>
<button class="btn btn-play">
<i class="fas fa-play"></i>
</button>
<button class="btn btn-next">
<i class="fas fa-forward"></i>
</button>
</div>
</div>
</main>
<script src="app.js"></script>
</body>
</html>