-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (70 loc) · 2.69 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
74
75
76
77
78
79
80
81
82
<!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">
<title>DRUM-KIT</title>
<link href="./style.css" rel="stylesheet"/>
<script src="https://kit.fontawesome.com/9c23b16c00.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="keycontainer" >
<div data-key="65" class="key" >
<kbd>A</kbd>
<small class="sound" >CLAP</small>
</div>
<div data-key="83" class="key" >
<kbd>S</kbd>
<small class="sound" >HIHAT</small>
</div>
<div data-key="68" class="key" >
<kbd>D</kbd>
<small class="sound" >KICK</small>
</div>
<div data-key="70" class="key" >
<kbd>F</kbd>
<small class="sound" >OPENHAT</small>
</div>
<div data-key="71" class="key" >
<kbd>G</kbd>
<small class="sound" >BOOM</small>
</div>
<div data-key="72" class="key" >
<kbd>H</kbd>
<small class="sound" >RIDE</small>
</div>
<div data-key="74" class="key" >
<kbd>J</kbd>
<small class="sound" >SNARE</small>
</div>
<div data-key="75" class="key" >
<kbd>K</kbd>
<small class="sound" >TOM</small>
</div>
<div data-key="76" class="key" >
<kbd>L</kbd>
<small class="sound" >TINK</small>
</div>
</div>
<audio data-key="65" src="./mixkit-one-clap-481 (2).wav"></audio>
<audio data-key="83" src="https://www.fesliyanstudios.com/play-mp3/6711"></audio>
<audio data-key="68" src="https://www.fesliyanstudios.com/play-mp3/5668"></audio>
<audio data-key="70" src="./mixkit-tribal-dry-drum-558.wav"></audio>
<audio data-key="71" src="./mixkit-deep-dark-horror-drum-557.wav"></audio>
<audio data-key="72" src="./mixkit-martial-arts-fast-punch-2047.wav"></audio>
<audio data-key="74" src="https://www.fesliyanstudios.com/play-mp3/6775"></audio>
<audio data-key="75" src="./mixkit-cool-guitar-riff-2321.wav"></audio>
<audio data-key="76" src="./mixkit-flute-alert-2307.wav"></audio>
<a href="https://github.com/tanishk15sharma" target="_blank" >
<i class="fab fa-github" ></i>
</a>
<a href="https://twitter.com/_tanishksharma?s=03" target="_blank" >
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/tanishk-sharma-98225a217/" target="_blank" >
<i class=" fab fa-linkedin" ></i>
</a>
<script src="./script.js" ></script>
</body>
</html>