-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 907 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Snake Game</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Mono">
<link rel="stylesheet" href="assets/css/main.css">
<script src="node_modules/p5/lib/p5.min.js"></script>
<script src="js/Square.js"></script>
<script src="js/Snake.js"></script>
<script src="js/Food.js"></script>
<script src="js/Score.js"></script>
<script src="js/keyCustom.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<h1>The Snake Game</h1>
<div class="bar"></div>
<div id="canvas-wrap"></div>
</div>
<footer>
Created by <a href="https://github.com/rich-97">Ricardo Moreno</a>.
</footer>
</body>
</html>