-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnakie.html
30 lines (26 loc) · 896 Bytes
/
snakie.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SNAKIE</title>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body class="snake-body">
<a class="green-page go-back-link" href="index.html">Go back</a>
<div class="flex">
<div class="game-intro">
<h2>Press Space to start!</h2>
<h3 class="score-heading">Score: <span id="score-span"></span> points.</span></h3>
</div>
<div class="snake-container">
<canvas id="snake-canvas" width="450" height="450"> </canvas>
</div>
<div></div>
</div>
<div class="message">
<h1>Please open this page on the big screen with a keyboard for best experience!</h1>
</div>
<script type="module" src="./js/snakie.js"></script>
</body>
</html>