-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 1.05 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
<!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>Music Event</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section>
<div class="keys">
<button onclick="dispKey()">Click Here to Start</button>
</div>
<audio data-key="65" src="sounds/A.geese.wav"></audio>
<audio data-key="83" src="sounds/S.roar.wav"></audio>
<audio data-key="68" src="sounds/D.high to low.wav"></audio>
<audio data-key="70" src="sounds/F.windy.wav"></audio>
<audio data-key="71" src="sounds/G.sneeze.wav"></audio>
<audio data-key="72" src="sounds/H.monkey laugh.wav"></audio>
<audio data-key="74" src="sounds/J.fart.wav"></audio>
<audio data-key="75" src="sounds/K.alert.wav"></audio>
<audio data-key="76" src="sounds/L.beep.wav"></audio>
</section>
<script src="js/script.js"></script>
</body>
</html>