-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (43 loc) · 1.63 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
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Musical tunings</title>
<link rel="icon" type="image/png" href="favicon.png" />
<meta name="author" content="Laszlo Barjak" />
<meta name="description" content="Musical tunings" />
<meta name="keywords" content="musical tunings" />
<link rel="stylesheet" href="main.css" />
<script type="module">
import Midi from './midi.js'
import View from './view.js'
window.onload = function (e) {
new Midi()
new View()
}
</script>
</head>
<body>
<table aria-label="table of tunings" style="width: 400px" id="fifths">
<tr>
<th scope="col">On/Off</th>
<th scope="col">Name</th>
<th scope="col">Equal freq.</th>
<th scope="col">Fifths freq.</th>
<th scope="col">% of Freq.</th>
</tr>
<tr>
<th id="allOff"><input type="checkbox" name="allOff" /></th>
<th id="space1"></th>
<th id="all0"><input type="checkbox" name="all0" checked /></th>
<th id="all1"><input type="checkbox" name="all1" checked /></th>
<th id="space2"></th>
</tr>
</table>
<p id="info">
Midi channel 0: Equal temperament, Midi channel 1: From circle of
fifths. <a href="#">Click here if there is no midi sound!</a>
</p>
</body>
</html>