-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
26 lines (21 loc) · 955 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<title>Squirts</title>
<link rel="stylesheet" href="game.css"/>
</head>
<body>
<canvas></canvas>
<div id="startScreen">
<a href="#" data-action="startGame">Start</a>
</div>
<div id="replayScreen">
<a href="#" data-action="startGame">Replay</a>
</div>
<div id="score">Blobs left: <span>0</span></div>
<footer>Lovingly coded by <a href="http://about.me/klemen.slavic" target="_blank">Klemen Slavič</a> and <a href="http://dribbble.com/KillerBee" target="_blank">Marko Novak</a>. Licensed under the MIT License and released on <a href="https://github.com/KrofDrakula/squirts" target="_blank">GitHub</a>.</footer>
<script src="build/game.js"></script>
</body>
</html>