forked from hoch/spiral-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (21 loc) · 1015 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Hello Saw | Spiral Boilerplate</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<link rel="shortcut icon" href="assets/favicon.ico">
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="assets/spiral-bp-header.html">
</head>
<body unresolved>
<h1>Hello Synth!</h1>
<!-- Your HTML should be here... -->
<spiral-knob id="k-freq" label="Freq" value="440" min-value="60" max-value="1000"></spiral-knob>
<spiral-knob id="k-cutoff" label="Cutoff" value="250" min-value="60" max-value="1000"></spiral-knob>
<spiral-knob id="k-reso" label="Reso" value="1.0" min-value="0.1" max-value="20"></spiral-knob>
<spiral-knob id="k-amp" label="Amp" value="0.25" min-value="0.0" max-value="1.0"></spiral-knob>
<script src="main.js"></script>
</body>
</html>