-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.html
37 lines (31 loc) · 950 Bytes
/
snake.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Snake!</title>
<link href="styles.css" rel="stylesheet" >
<link rel="shortcut icon" href="Images/favicon.ico" />
</head>
<body>
<div id="header">Jonathan Stewart</div>
<hr />
<div id="navigation">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>
<hr />
<div id="content">
<canvas id="canvas" width="450" height="450"></canvas>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="JS/Snake.js"></script>
</div>
<div id="footer">
<hr />
<div id="navigation">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>
</div>
</body>
</html>