-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (71 loc) · 2.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Lofi Music Player</title>
</head>
<body>
<div class="player">
<div class="container">
<!-- ============== Top Icons ============== -->
<div class="icons">
<a href="#"><i class="fa fa-music"></i></a>
<h1>LOFI</h1>
<a href="#"><i class="far fa-heart"></i></a>
</div>
<!-- ============== img ============== -->
<div class="img">
<img src="namo.jpg" alt="" />
</div>
<!-- ============== Title ============== -->
<div class="title">
<h1 id="song-title">Namo Namo - Amit Trivedi - Slowed + Reverb</h1>
</div>
<!-- ============== time ============== -->
<div class="time">
00:00
<span></span>
00:00
</div>
<!-- ============== Seek Bar ============== -->
<div class="seek">
<div class="fill"></div>
</div>
</div>
<!-- ============== Audio Buttons ============== -->
<div class="audio-btns">
<div class="play-btns">
<a href="#" onclick="prevAudio()"><i class="fa fa-backward"></i></a>
<a href="#" class="play-pause" onclick="togglePlayPause()"
><i class="fa fa-play"></i
></a>
<a href="#" onclick="nextAudio()"><i class="fa fa-forward"></i></a>
</div>
<div class="repeat-btns">
<a href="#"><i class="fa fa-retweet"></i></a>
<span>
<button class="decrease" onclick="decreaseVolume()">-</button>
<a href="#" class="volume-up"><i class="fa fa-volume-up"></i></a>
<button class="increase" onclick="increaseVolume()">+</button>
</span>
<a href="#"><i class="fa fa-random"></i></a>
</div>
</div>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>