-
Notifications
You must be signed in to change notification settings - Fork 437
/
Copy pathindex.html
34 lines (29 loc) · 947 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
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Violent Theremin</title>
<link href="styles/normalize.css" rel="stylesheet" type="text/css" />
<link href="styles/app.css" rel="stylesheet" type="text/css" />
</head>
<body>
<button class="start-message">
Click anywhere in the browser window <br />
to start the app.
</button>
<div class="app-contents">
<h1>Violent Theremin</h1>
<button class="mute" data-muted="false">Mute</button>
<button class="clear">Clear screen</button>
<p class="control-message">
Use mouse or arrow keys to control theremin.
</p>
<canvas class="canvas">
Your browser does not support HTML5 canvas
</canvas>
</div>
<!-- Below is your custom application script -->
<script src="scripts/app.js"></script>
</body>
</html>