-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsynth.html
More file actions
32 lines (30 loc) · 1.22 KB
/
synth.html
File metadata and controls
32 lines (30 loc) · 1.22 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Synth | Torsk</title>
<script src="/static/fastclick/lib/fastclick.js"></script>
<script src="/static/socket.io-client/socket.io.js"></script>
<!-- CSS -->
<link href="/static/bootstrap/dist/css/bootstrap.css" rel="stylesheet">
<link href="torsk.css" rel="stylesheet">
<!-- JS -->
<script type="text/javascript" src="torsk.js"></script>
</head>
<body>
<table>
<tr>
<td onclick="play('C')" style="background-color: lightblue;" class="inactive"></td>
<td onclick="play('D')" style="background-color: violet;" class="inactive"></td>
<td onclick="play('E')" style="background-color: lightgray;" class="inactive"></td>
<td onclick="play('F')" style="background-color: limegreen;" class="inactive"></td>
</tr>
<tr>
<td onclick="play('G')" style="background-color: limegreen;" class="inactive"></td>
<td onclick="play('A')" style="background-color: lightgray;" class="inactive"></td>
<td onclick="play('B')" style="background-color: violet;" class="inactive"></td>
<td onclick="play('C5')" style="background-color: lightblue;" class="inactive"></td>
</tr>
</table>
</body>
</html>