-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.06 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.06 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
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- <link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet"> -->
</head>
<style>
body {
font-family: 'VT323', monospace;
}
h3 {
margin: 5px 0px 5px 0px;
}
.header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
border-bottom: solid 1px #666;
}
.header a {
text-decoration: none;
color: blue;
}
.container {
display: flex;
flex-direction: row;
}
.tips {
margin-left: 80px;
}
</style>
<body>
<div class="header">
<h3>GRAVEL PIT</h3>
<a href="https://github.com/incrediblesound/gravel-pit-music">GITHUB</a>
</div>
<div class="container">
<canvas id="synth" height="680" width="800"></canvas>
<div class="tips">
<p>spacebar: play/stop</p>
<p>c/v: copy/paste current page</p>
<p>[/]: rotate through instruments</p>
</div>
</div>
</body>
<script src="./main.bundle.js"></script>
</html>