-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 835 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="game.css">
<title>Snake</title>
</head>
<body>
<div id="gameCont">
<div id="scoreRecordContainer">
<div class="scoreRecordRow">
<img src="images/score_apple.png" alt="Score: " height="30px">
<span id="scoreText">0</span>
</div>
<div class="scoreRecordRow">
<img src="images/medal.png" alt="Record: " height="30px">
<span id="recordText">0</span>
</div>
</div>
<canvas id="gameBoard" width="500" height="500"></canvas>
<button id="resetBtn">Reset (space)</button>
</div>
<script src="game.js"></script>
</body>
</html>