-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.32 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
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Why Are We Like This?</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Stint+Ultra+Condensed&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&family=Stint+Ultra+Condensed&display=swap" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<div id="fakeTranscriptTextarea">test text</div>
<!-- Load sim scripts. -->
<script src="sim/datascript-0.18.4.min.js"></script>
<script src="sim/util.js"></script>
<script src="sim/felt.js"></script>
<script src="sim/sim.js"></script>
<script src="sim/actions.js"></script>
<script src="sim/actions_max.js"></script>
<script src="sim/actions_mel.js"></script>
<script src="sim/effects.js"></script>
<script src="sim/effects_max.js"></script>
<script src="sim/effects_mel.js"></script>
<script src="sim/siftpatterns.js"></script>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<!-- Load our UI code. -->
<script src="app.js"></script>
</body>
</html>