-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 891 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 891 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Soundsurgeon HTML5 Synthesizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Oliver Baptiste">
<meta name="description" content="This HTML5 app transforms your
computer keyboard into an electronic musical instrument:
the JS-11-16 monophonic synthesizer. Make music with your home row!">
<link href="base.css" rel="stylesheet">
</head>
<body>
<header>
<h1>
<strong>SOUNDSURGEON</strong>
<span>JS‑11‑16 monosynth</span>
</h1>
</header>
<div class="app"></div>
<script type="module" src="/app.js"></script>
<noscript>
<p>This app requires a JavaScript-enabled browser
that <a href="https://caniuse.com/audio-api">supports
the Web Audio API</a>.</p>
</noscript>
</body>
</html>