-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (34 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pac-man</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="instructions" class="instructions">
<h2>How to play Pacman Nostalgia</h2>
<ul>
<li>Use the arrow keys to move Pacman.</li>
<br>
<li>Eat all the food to win the game.</li>
<br>
<li>Avoid the enemies, or you will lose.</li>
<br>
<li>Eat the Superfood to make enemies freeze for 5 seconds.</li>
</ul>
<button id="startGameBtn">Start Game</button>
</div>
<h1>Pacman Nostalgia</h1>
<div class="grid"></div>
<h3>Points: <span id="points"></span></h3>
<div id="gameover">Game Over!
<button id="btn-restart">Try again</button>
</div>
<div id="wins">Congrats, you won!!!
<button id="btn-tryagain">Restart</button>
</div>
<script src="index.js"></script>
</body>
</html>