-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsequence.html
34 lines (29 loc) · 971 Bytes
/
sequence.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Sequence | Torsk</title>
<script src="/static/fastclick/lib/fastclick.js"></script>
<script src="/static/socket.io/node_modules/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>
<div class="container">
<div class="jumbotron">
<h1>Torsk-Sequence! Play for Lofoten :)</h1>
</div>
<div class="row marketing">
<p>possible notes: c,d,e,f,g,a,b,c </p>
<form>
<input id="chordSequence" type="text" name="sequence"/>
<button type="button" onclick="playSequence()">Play sequence</button>
<button type="button" onclick="stopSequence()">Stop sequence</button>
</form>
</div>
</div>
</body>
</html>