-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 1.3 KB
/
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
<!--Adopted from https://github.com/pd-andy/elm-web-audio/tree/master/example-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Elmsynth</title>
<link rel="shortcut icon" size="16x16, 32x32, 48x48, 64x64, 128x128, 256x256" href="/assets/nfavicon.png">
<meta name="description" content="elm-web-audio provides a html-like declarative API for Web Audio programming in Elm.">
<meta name="keywords" content="Web Audio API, Elm">
<meta name="author" content="Andrew Thompson/Efraim Dahl/Ellyn Liu">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!--<script src="node_modules/tone/build/Tone.js"></script>-->
<script src="https://tonejs.github.io/build/Tone.js"></script>
<link rel="stylesheet" href="style.css"/>
<script src="elm-comp.js"></script>
</head>
<body class="bg-grey-lightest font-sans leading-normal tracking-normal">
<div class="container mx-auto">
<div id="app"></div>
</div>
<script type="module" src = "main.js"></script>
</body>
</html>