-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnake.html
More file actions
23 lines (19 loc) · 858 Bytes
/
Copy pathsnake.html
File metadata and controls
23 lines (19 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Snake</title>
<link rel="stylesheet" href="snake.css">
</head>
<body>
<h1>Snake</h1>
<a href="#" id="pause" class="paused">Start</a>
<p class="score">Score: <span id="score">0</span></p>
<p class="description">Control with the arrow keys. Eat the Food. Avoid yourself and the walls!</p>
<div id="grid"></div>
<p><em>A <a href="http://www.theodinproject.com/courses/javascript-and-jquery/lessons/jquery-and-the-dom">JavaScript/jQuery project</a> by <strong>David Chapman</strong> in partial fulfillment of <a href="http://www.theodinproject.com/">The Odin Project</a></em></p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="snake.js"></script>
</body>
</html>