-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
69 lines (46 loc) · 2.17 KB
/
Home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Music Player</title>
<link rel="stylesheet" href="styles.css">
<!-- Link for play,pause,speaker/seek icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Canvas for Music WaveForm -->
<canvas id="myCanvas" width="1400px" height="350px" style="cursor: pointer; margin-left: 10px; border: 0px solid black;">
Dedicated to SalesKen.
</canvas>
<div class="cont">
<!-- Audio tag for file -->
<audio id="song" preload="metadata">
<source src="./music2.wav" type="audio/mpeg">
</audio>
<!-- Play/Pause Buttons -->
<div class="mid_cont">
<div class="sound"><i class="fa fa-volume-up" id="vol" style="font-size:24px; color:#3FE0D0; margin: auto; margin-left: 30%; margin-top: 4%;"></i></div>
<div class="play"><i class="fa fa-play" id="play_pause" style="font-size:34px; color:#3FE0D0; margin: auto; margin-left: 35%; margin-top: 10%;"></i></div>
<div class="sound"><i class="fa fa-forward" id="seek" style="font-size:20px; color:#3FE0D0; margin: auto; margin-left: 35%;margin-top: 10%;"></i></div>
</div>
<!-- Bottom Part -->
<div class="btm_cont">
<div class="btm_left">
<li><span class="list_tag">Laptop details: </span></li>
<li><span class="list_tag">Closures: </span></li>
<li><span class="list_tag">Referals: </span></li>
<li><span class="list_tag">Importance of MATH:</span></li>
</div>
<div class="btm_right">
<input type="range" name="" id="" value="30">
<input type="range" name="" id="" value="50">
<input type="range" name="" id="" value="70">
<input type="range" name="" id="" value="40">
</div>
</div>
</div>
<script src="./music.js">
</script>
</body>
</html>