-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamePageSkilled.html
44 lines (34 loc) · 1.14 KB
/
gamePageSkilled.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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Snake Game</title>
<style>
canvas{
display: block;
margin: 0 auto;
}
</style>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC&display=swap" rel="stylesheet">
</head>
<body>
<canvas id="snake" width="608" height="608"></canvas>
<script src="snake.js"></script>
<script>
startHardMode();
</script>
<div id="exit">
<h1 id="gameOver"></h1>
</div>
<div id="scores">
<h2 id = "score_title"></h2>
<h2 id="Beginner player's max score"></h2>
<h2 id="Skilled player's max score"></h2>
</div>
<div id ="backButton">
<a id = "homeButton" href="index.html">Go Home</a>
<h2 id="creator">Created by: Joshua Luong</h2>
</div>
</div><!-- end container -->
</body>
</html>