-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
51 lines (33 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>MusiCode</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="src/codemirror/codemirror.css"/>
</head>
<body onLoad="main();">
<div id="divCode"></div>
<div id="divViewer">
<span id="tempPlaybackLabel">Press Ctrl+Space to Play/Stop.</span><br>
<svg id="svgViewer"></svg>
</div>
</body>
<script src="src/util/math.js"></script>
<script src="src/util/rational.js"></script>
<script src="src/util/theory.js"></script>
<script src="src/song/song.js"></script>
<script src="src/song/note.js"></script>
<script src="src/song/chord.js"></script>
<script src="src/song/meter.js"></script>
<script src="src/song/key.js"></script>
<script src="src/compiler/reader.js"></script>
<script src="src/compiler/parser.js"></script>
<script src="src/viewer/viewer.js"></script>
<script src="src/synth/instrument_square.js"></script>
<script src="src/synth/instrument_triangle.js"></script>
<script src="src/synth/instrument_piano.js"></script>
<script src="src/synth/synth.js"></script>
<script src="src/codemirror/codemirror.js"></script>
<script src="src/main.js"></script>
</html>