-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameplay.html
More file actions
49 lines (44 loc) · 1.34 KB
/
gameplay.html
File metadata and controls
49 lines (44 loc) · 1.34 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="google-site-verification" content="PyCzLYYX7FgPsa13IkrW35yB2i3iQ7-sXykTrMSj3Os" />
<meta charset="utf-8" />
<title>Makan Monster</title>
<link rel="stylesheet" href="styles.css" />
<script src="app.js" charset="utf-8"></script>
<!-- Favicon -->
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<!-- Game Overlay -->
<div class="overlay-screen" id="start-screen">
<!-- Header Section -->
<header>
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="disclaimer.html">Disclaimer</a></li>
<li><a href="privacy.html">Privacy</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<h1>Makan Monster</h1>
<h2 id="start-msg">Press ENTER to start</h2>
<h2>Use arrow keys to move</h2>
</div>
<!-- Game Container -->
<div class="game-container">
<div class="grid"></div>
<h2>Score:<span id="score">0</span></h2>
</div>
<!-- Game Over Screen -->
<div class="overlay-screen" id="game-over-screen">
<span>GAME OVER!</span>
</div>
<!-- You Won Screen -->
<div class="overlay-screen" id="you-won-screen">
<span>YOU WON!</span>
</div>
</body>
</html>