forked from seanrreid/jquery_music_box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (83 loc) · 2.9 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
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Unintentionally Spooky Music Box
</title>
<link rel="stylesheet"
href="./styles/main.css" />
</head>
<body>
<div class="wrapper">
<section class="intro">
<h1>(Unintentionally Spooky) My
Music Box</h1>
<p>This is an older project
written with jQuery. I lost
the original piano note audio
files, so this version has new
files.</p>
<p>I'm fairly certain the audio
doesn't properly reflect the
notes, but I kept the names
the same anyway.</p>
</section>
<section class="musicbox">
<audio id="cAudio">
<source
src="./audio/Piano110.mp3"
type="audio/mpeg">
</source>
</audio>
<audio id="dAudio">
<source
src="./audio/Piano111.mp3"
type="audio/mpeg">
</source>
</audio>
<audio id="eAudio">
<source
src="./audio/Piano112.mp3"
type="audio/mpeg">
</source>
</audio>
<audio id="fAudio">
<source
src="./audio/Piano113.mp3"
type="audio/mpeg">
</source>
</audio>
<audio id="gAudio">
<source
src="./audio/Piano114.mp3"
type="audio/mpeg">
</source>
</audio>
<audio id="aAudio">
<source
src="./audio/Piano115.mp3"
type="audio/mpeg">
</source>
</audio>
<audio id="bAudio">
<source
src="./audio/Piano116.mp3"
type="audio/mpeg">
</source>
</audio>
<div id="instrument">
<div id="c" class="box"></div>
<div id="d" class="box"></div>
<div id="e" class="box"></div>
<div id="f" class="box"></div>
<div id="g" class="box"></div>
<div id="a" class="box"></div>
<div id="b" class="box"></div>
</div>
</section>
</div>
<script src="./scripts/index.js"></script>
</body>
</html>