-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (34 loc) · 1.28 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<script src="crafty.js"></script>
<script src="timer.js"></script>
<script src="components.js"></script>
<script src="main.js"></script>
<script src="game2.js"></script>
</head>
<body>
<div id="container" class="container">
<div class="row">
<div class="span11">
<header class="page-header">
<h1 >SSSSNAKE</h1>
<p>A classic snake game with achievements.</p>
</header>
</div>
<div class="span11">
<div id="cr-stage"></div>
</div>
<div class="span11">
<footer class="footer">
<p>This game is programmed by a coding newbie for learning javascript and the game programming framework <a href="http://craftyjs.com/">Craftyjs</a>.
<br /> Feel free to checkout the code on Github!
<br />
A thousand thanks to <a href="https://twitter.com/#!/timschierbaum">@timschierbaum</a> for the awesome graphic works.
</footer>
</div>
</div>
</div>
</body>
</html>