-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.31 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
<!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" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Music Page</title>
</head>
<body>
<div class="main">
<div class="container">
<div id="dark">
<input type="checkbox" class="checkbox" id="chk" />
<label class="label" for="chk">
<div class="ball"></div>
</label>
</div>
<h2 id="title">Acoustic</h2>
<h3 id="artist">Acoustic royalty</h3>
<div id="img">
<img src="disc.png">
</div>
<audio src="Music/1.mp3"></audio>
<div class="music-c">
<i class="fa fa-backward" aria-hidden="true" id="prev" class="prev"></i>
<i class="fa fa-play " aria-hidden="true" id="play" class="play"></i>
<i class="fa fa-forward" aria-hidden="true" id="next" class="next"></i>
</div>
</div>
</div>
<script src='main.js'></script>
</body>
</html>