-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (39 loc) · 1.31 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
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Koi no Ike</title>
<link href="styles/main.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Dosis:400,300' rel='stylesheet' type='text/css'>
<script src='js/utilities.js'></script>
<script src='js/loader.js'></script>
<script src='js/sound.js'></script>
<script src='js/keys.js'></script>
<script src='js/emitter.js'></script>
<script src='js/main.js'></script>
<script src='js/koiModule.js'></script>
<script src='js/Koi.js'></script>
<script src='js/sakuraModule.js'></script>
<script src='js/Sakura.js'></script>
</head>
<body>
<div class="container">
<canvas width="1200" height="500">
</canvas>
<div class="welcome">
<h2>Welcome to the Koi Pond</h2>
<div>Shift + Drag Mouse to Generate Cherry Blossoms</div>
</div>
<div class="instructions">
<p id="questionIcon">?</p>
<img id="resetIcon" src="media/reset-icon.png" />
</div>
<div class="audioControls">
<audio id="bgAudio" src="media/piano.mp3" controls loop></audio>
</div>
<div class="signature">
Created by Cailin Li
</div>
</div>
</body>
</html>