-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.99 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
<!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>Frogchestra</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="orchestra">
<div data-note="C" class="frog front" id="C-note"></div>
<div data-note="Db" class="frog back" id="Db-note"></div>
<div data-note="D" class="frog front" id="D-note"></div>
<div data-note="Eb" class="frog back" id="Eb-note"></div>
<div data-note="E" class="frog front" id="E-note"></div>
<div data-note="F" class="frog front" id="F-note"></div>
<div data-note="Gb" class="frog back" id="Gb-note"></div>
<div data-note="G" class="frog front" id="G-note"></div>
<div data-note="Ab" class="frog back" id="Ab-note"></div>
<div data-note="A" class="frog front" id="A-note"></div>
<div data-note="Bb" class="frog back" id="Bb-note"></div>
<div data-note="H" class="frog front" id="H-note"></div>
<div data-note="C1" class="frog front" id="C1-note"></div>
</div>
<audio src="sounds/C_frog.mp3" id="C"></audio>
<audio src="sounds/Db_frog.mp3" id="Db"></audio>
<audio src="sounds/D_frog.mp3" id="D"></audio>
<audio src="sounds/Eb_frog.mp3" id="Eb"></audio>
<audio src="sounds/E_frog.mp3" id="E"></audio>
<audio src="sounds/F_frog.mp3" id="F"></audio>
<audio src="sounds/Gb_frog.mp3" id="Gb"></audio>
<audio src="sounds/G_frog.mp3" id="G"></audio>
<audio src="sounds/Ab_frog.mp3" id="Ab"></audio>
<audio src="sounds/A_frog.mp3" id="A"></audio>
<audio src="sounds/Bb_frog.mp3" id="Bb"></audio>
<audio src="sounds/H_frog.mp3" id="H"></audio>
<audio src="sounds/C1_frog.mp3" id="C1"></audio>
<div class="anleitung">
<p>USE THE KEYBOARD TO PLAY</p>
<p>_s_d___g_h_j</p>
<p>y_x_c_v_b_n_m_, </p>
</div>
<script src="index.js"></script>
</body>
</html>