-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (41 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div class="flex">
<div class="centering">
<header class="headline">
<h1>Spoopyboard</h1>
<h2>Chas Academy Edition</h2>
<p>Press the keys on your keyboard to play</p>
</header>
<div class="keys">
<div data-key="65" class="key">
<kbd>A</kbd>
<span>Mohahaha!</span>
</div>
<div data-key="83" class="key">
<kbd>S</kbd>
<span>Blood-curdling scream</span>
</div>
<div data-key="68" class="key">
<kbd>D</kbd>
<span>Spoopy sounds</span>
</div>
</div>
</div>
<!-- Audio -->
<audio data-key="65" src="./assets/audio/evil-laugh.wav"></audio>
<audio data-key="83" src="./assets/audio/blood-curdling-scream.wav"></audio>
<audio data-key="68" src="./assets/audio/spoopy-sounds.wav"></audio>
<!-- End Audio -->
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>