-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.html
57 lines (39 loc) · 1.12 KB
/
app.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
Song Writer
</title>
<link rel="stylesheet" type="text/css" href="app.css">
<script src="app.js"></script>
</head>
<body>
<menus>
<rootnotemenu id="rootNoteMenu">
</rootnotemenu>
<scalemenu id="scaleMenu">
</scalemenu>
</menus>
<settings>
<rootnote id="rootNote">
C
</rootnote>
<scale id="scale">
</scale>
<beatsperminute id="beatsPerMenu">
</beatsperminute>
<songname id="songName" contenteditable="true">
Name
</songname>
</settings>
<sequencer id="sequencer">
<pattern>
</pattern>
<patterns>
</patterns>
</sequencer>
<chords id="chords">
</chords>
</body>
</html>