forked from elena-in-code/Snake-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 735 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (19 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="assets/style.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<title> 🐍 Snake Game</title>
</head>
<body>
<div class="container">
<h3>🐍 SNAKE GAME 🐍</h3>
<p> 🎯objective: Eat the grey square <br>
💀DONT hit the red borders or the snake body </p>
</div>
<script type="text/javascript" src="assets/script.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.4/p5.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.4/addons/p5.dom.js"></script>
</body>
</html>