-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Arcade Game: Collect Shells</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Help Sally collect all the sea shells!</h1>
</header>
<main>
<div id="canvasContainer"></div>
</main>
<section>
<div id="gamedifficulty">
<h4>Difficulty</h4>
<input type="radio" name="gamemode" value="easy" id="easy" checked="checked"> Easy
<input type="radio" name="gamemode" value="hard" id="hard"> Hard
</div>
<div id="debug">
<h4>Debug Mode</h4>
<input type="radio" name="debugmode" value="on" id="on"> On
<input type="radio" name="debugmode" value="off" id="off" checked="checked"> Off
</div>
</section>
<footer>
<h3>Image Credits</h3>
"PlanetCute" game prototyping tiles created by <a href="http://www.lostgarden.com/2007/05/dancs-miraculously-flexible-game.html" target="_blank">Danc</a> + ocean changes by me
<br>
"Shark" vector image from <a href="http://qvectors.net/sea-animals-vector-set/" target="_blank">QVectors</a>
<br>
"Pearl Shell" vector image from <a href="http://www.vecteezy.com/vector-art/89487-pearl-shell-sticker-vectors" target="_blank">Vecteezy</a>
<br>
"Coral Reef" vector images from <a href="http://www.vecteezy.com/vector-art/86470-coral-reef-with-fish-vectors" target="_blank">Vecteezy</a>
</footer>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>