-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhtml.html
More file actions
19 lines (19 loc) · 777 Bytes
/
html.html
File metadata and controls
19 lines (19 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<script src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<script src="main.js"></script>
<script src="generateWorld.js"></script>
<script src="helperFunctions.js"></script>
<audio id="Intro" src="Audio/Intro.wav"></audio>
<audio id="PUH" src="Audio/PUH.wav"></audio>
<audio id="THWIP" src="Audio/THWIP.wav"></audio>
<audio id="POP" src="Audio/POP.wav"></audio>
<audio id="TSST" src="Audio/TSST.wav"></audio>
<audio id="BWEEEE"src="Audio/BWEEEE.wav"></audio>
</head>
<body onload="load()" style="margin:0;">
<div>
<canvas id="canvas" width="512" height="512" style="padding:0; margin:auto; display:block; background-color:skyblue"></canvas>
</div>
</body>
</html>