-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (26 loc) · 856 Bytes
/
index.html
File metadata and controls
32 lines (26 loc) · 856 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
29
30
31
32
<html>
<head>
<title>How the jellyfish jumped up the mountain</title>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<script language="javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" src="libraries/p5.sound.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js?1500"></script>
<script language="javascript" type="text/javascript" src="jellyfish.js?1500"></script>
<script language="javascript" type="text/javascript" src="tree.js?1500"></script>
<style>
body {
padding: 0;
margin: 0;
}
p {
color:white;
}
</style>
</head>
<body>
<audio autoplay loop>
<source src="jelly.mp3" type="audio/mpeg">
</audio>
</body>
</html>