-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 933 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Snake Game</title>
<style>
body {
text-align: center;
}
canvas {
border: solid;
}
#table {
font-family: Lucida Console;
}
h1 {
font-family: Lucida Console;
}
</style>
</head>
<body>
<h1>SNAKE</h1>
<canvas id="canvas" width="500" height="300"></canvas>
<script src="Square.js" type="text/ecmascript"></script>
<script src="Snake.js" type="text/ecmascript"></script>
<script src="Food.js" type="text/ecmascript"></script>
<script src="Game.js" type="text/ecmascript"></script>
<script src="Collision.js" type="text/ecmascript"></script>
<br><br>
<div id="table"></div>
</body>
</html>