-
Notifications
You must be signed in to change notification settings - Fork 0
/
howto.html
40 lines (35 loc) · 1.82 KB
/
howto.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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/jpeg" href="./Burger.jpeg">
<title>Game Rules</title>
</head>
<body>
<div id="rules">
<h1>How to play the game</h1>
<ul>
<li>When you press start, the game is initializedm with 60 seconds and 0 points</li>
<li>The game time will be decremanting every second. Once your time or points are below 0, then the game is over.</li>
<li>In order to avoid time loss, you have to aim to eat as many burgers as possible using the SpongeBob character.</li>
<li>You use the direction buttons or the keyboard arrow keys on a PC to control your SpongeBob character</li>
<li>Every burger eaten results in a time increment of 10 seconds and a point incriment of 10 points as well</li>
<li>If you hit a wall you get a sscore decrement of 0</li>
<li>You can play the game for as long as you wish. If you decide to quit, you can just press the stop button.</li>
<li>For your name to appear in the leaderboard you have to score at least 100 points.</li>
<li> If you did not provide your name at the begining of the game, you will appear as <u>Stranger101</u> in the leader board </li>
</ul>
<h4>Enjoy the game!</h4>
</div>
<h4> Created By <a href="https://www.github.com/KudahShambare" target="_blank">KudahShambare</a> </h4>
<hr/>
<a href="index.html">
<h3>Go back to the game</h3>
</a>
</body>
</html>