-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.19 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.19 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
<!DOCTYPE>
<html>
<head>
<script src="bundle.js" charset="utf-8"></script>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Roboto" rel="stylesheet">
</head>
<body>
<main>
<h1>MonsterGolf JS</h1>
<p>A JavaScript game by <a href="https://etgrieco.github.io/">Elliott Grieco</a></p>
<canvas id="game" height="480" width="720"></canvas>
<section="play-notes">
<h2>Objective:</h2>
<p>The monster is HANGRY! Time your swings to get the food to the monster in as few strokes as possible.</p>
<h2>Controls:</h2>
<ul>
<li>ARROW KEYS (+ SHIFT): Change swing direction.</li>
<li>SPACE: Strike food.</li>
<li>R: Restart game.</li>
</ul>
</section>
<section>
<h3>Acknowledgements:</h3>
<ul>
<li>Monster Graphics: <a href="https://opengameart.org/content/cute-monster-sprite-sheet">OpenGameArt.org (dogchicken)</a></li>
<li>Food graphics: <a href="https://opengameart.org/content/food-icons">OpenGameArt.org (BizmasterStudios & Mold)</a></li>
</ul>
</section>
</main>
</body>
</html>