-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 819 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head><title>Snake</title>
<script src="../lib/underscore.js" type="text/javascript"></script>
<script src="../lib/jQuery.js" type="text/javascript"></script>
<script src="coord.js" type="text/javascript"></script>
<script src="board.js" type="text/javascript"></script>
<script src="snake.js" type="text/javascript"></script>
<script src="snake-ui.js" type="text/javascript"></script>
<link href="snake.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Snake</h1>
<div class="message">Eat your apples.</div>
<div class="container"></div>
<div class="footer">Made by <a href="http://app-academy-kyungmin.tumblr.com">KK</a></div>
<script type="text/javascript">
var view = new SnakeGame.View($('.container'));
view.start();
</script>
</body>
</html>