-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (57 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Drum Kit</title>
<meta name="description"
content="Drum Kit - a site in the internet universe which consists of a small drum kit. This site was made for fun , use it however you wish.">
<meta name="author" content="Alin Neagu">
<meta property="og:title" content="Drum Kit">
<meta property="og:type" content="website">
<meta property="og:url" content="https://alinneagu2004.github.io/Drum-Kit/">
<meta property="og:description"
content="Drum Kit - a site in the internet universe which consists of a small drum kit. This site was made for fun , use it however you wish.">
<meta property="og:image" content="images/media-icon.png">
<link rel="icon" href="images/favicon.ico">
<link rel="icon" href="images/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
<script src="https://code.createjs.com/1.0.0/soundjs.min.js"></script>
</head>
<body onload="loadSound();">
<header>
<h1 id="title">Drum 🥁 Kit</h1>
</header>
<main>
<div class="set">
<button onclick="playTom1();" class="w drum">
<p>w</p>
</button>
<button onclick="playTom2();" class="a drum">
<p>a</p>
</button>
<button onclick="playTom3();" class="s drum">
<p>s</p>
</button>
<button onclick="playTom4();" class="d drum">
<p>d</p>
</button>
<button onclick="playSnare();" class="j drum">
<p>j</p>
</button>
<button onclick="playCrash();" class="k drum">
<p>k</p>
</button>
<button onclick="playKick();" class="l drum">
<p>l</p>
</button>
</div>
</main>
<footer>
<p class="desktop-footer">Made with ❤️ in Chisinau.</p>
</footer>
<script src="index.js"></script>
</body>
</html>