-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.92 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.92 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>JS-808</title>
<meta name="description" content="A Drum Machine">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/basscss.min.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="sequencer-controls p2 bg-dark-gray clearfix">
<!-- Todo Update This -->
<h1 class="sequencer-title h2 m0">JS-808</h1>
<div class="sequencer-play-state">
<div class="col col-6">
<button id="playPause" class="btn bg-white black rounded">Play</button>
</div>
<div class="col col-6 col-right">
<div class="table col-right">
<div class="table-cell right-align px1">
<span class="sequencer-bpm-label white caps">Bpm</span>
</div>
<div class="table-cell">
<input id="speed" type="number" class="field-dark" value="128" />
</div>
<div class="table-cell px1">
<select id="trackSelect" class="field-dark">
<option>JS-1</option>
<option>JS-2</option>
<option>JS-3</option>
</select>
</div>
</div>
</div>
</div>
</div>
<div id="app" class="p1"></div>
<p>
<a class="h6 p2 gray" href="https://github.com/clintonhalpin/drum-machine">View on Github</a>
</p>
<script src="app.js"></script>
</body>
</html>