-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.6 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snake Game</title>
<link rel= "stylesheet" href="styles/styles.css">
<script defer
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<script defer src="scripts/main.js"></script>
</head>
<body>
<h1>Snake Game</h1>
<nav>
</nav>
<main>
<div id="board"></div>
<img id="cover" src="assets/beauty snake.png">
Hi! i am babe snake that is very hungry can you help me find some tasty food!
</img>
</main>
<div class="footer">
Level:<span id="level">Slug </span>
Speed:<span id="speedvalue"></span>
Goal:<span id="goal"></span>
Score: <span id="score">zer0 </span>
</div>
<div class="help">
<h2>How to Play</h2>
<p><h3>Controls</h3>press <kbd>s</kbd> to start the game<br>
use the <kbd>arrow keys</kbd> to control the snake
<br><h3>Score</h3>every food you eat is 100 points!
<br><h3>Caution!!</h3>it's game over when eating yourself or getting
the snake head out of the game board
</p>
</div>
<div class="winning-message" id="winningMessage">
<div></div>
<button id='nextLevel'> Next Level</button>
<button id="restartButton">Restart</button>
<button id="cancelButton"> Cancel</button>
</div>
</body>
</html>