-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.html
65 lines (55 loc) · 1.76 KB
/
music.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
<!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="blue.css" id="css_style">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Anuj Ketkar</title>
</head>
<div class="navi" id="myNavi">
<a href="javascript:void(0);" class="icon" onclick="menu()">
<i class="fa fa-bars"></i>
</a>
<a href="index.html"> Home</a>
<a href="projects.html">Projects</a>
<a href="resume.html">Resume</a>
<a class="active">Music</a>
</div>
<body onload="setSlider()">
<script src='functions.js'></script>
<section>
<h1> MUSIC </h1>
<!-- <label class="switch">
<input type="checkbox" id="check" onclick='change()''>
<span class="slider"></span>
<p class="label"> <br> Site Theme </p>
</label> -->
</section>
<section class="first">
<h2> Restart </h2>
<audio controls>
<source src="audio/restart.wav" type="audio/wav">
</audio>
</section>
<section class="second">
<h2> Empty Desires </h2>
<audio controls>
<source src="audio/emptydesires.mp3" type="audio/wav">
</audio>
</section>
<section class="first">
<h2> Oasis </h2>
<audio controls>
<source src="audio/oasis.mp3" type="audio/wav">
</audio>
</section>
<section class="second">
<h2> Uncharted Horizon </h2>
<audio controls>
<source src="audio/unchartedhorizon.mp3" type="audio/wav">
</audio>
</section>
</body>
</html>