-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 879 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 879 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
25
26
27
28
29
<!DOCTYPE HTML>
<html>
<head>
<title>Simple Snake game</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>Simple Snake</h1>
</header>
<section class="column-container">
<div class="first-column">
<h2><span id="highScore">High Score: 0</span></h2>
<h2><span id="score">Score: 0</span></h2>
<canvas id="gameCanvas" width="400" height="400"></canvas>
<p>
Simple snake is of course a simple snake game for those who just want to enjoy a great classic. Use WASD to move and start the game.
</p>
</div>
</section>
<footer>
Created by David Becker
</footer>
</div>
<script src="app.js"></script>
</body>
</html>