-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Dum Dum Drum</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="images/icon.png">
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
<link rel="preload" as="audio" href="sounds/crash.mp3" type="audio/mpeg">
<link rel="preload" as="audio" href="sounds/kick-bass.mp3" type="audio/mpeg">
<link rel="preload" as="audio" href="sounds/snare.mp3" type="audio/mpeg">
<link rel="preload" as="audio" href="sounds/tom-1.mp3" type="audio/mpeg">
<link rel="preload" as="audio" href="sounds/tom-2.mp3" type="audio/mpeg">
<link rel="preload" as="audio" href="sounds/tom-3.mp3" type="audio/mpeg">
<link rel="preload" as="audio" href="sounds/tom-4.mp3" type="audio/mpeg">
</head>
<body>
<h1 id="title">Drum 🥁 Kit</h1>
<div class="set">
<button class="w drum">w</button>
<button class="a drum">a</button>
<button class="s drum">s</button>
<button class="d drum">d</button>
<button class="j drum">j</button>
<button class="k drum">k</button>
<button class="l drum">l</button>
</div>
<script src="index.js" charset="utf-8"></script>
<footer>
<div> Lets make some sound.</div>
<p>For better experence use your head-set</p>
</footer>
</body>
</html>