-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./css/to_the_den.css">
<title>To The Den</title>
</head>
<body>
<h1>To The Den</h1>
<main>
<section class="left-info">
<h2>Instructions</h2>
<p>Winter has come! <br>The time to hiberate is now.
<br>Traverse the icy snow to your cave.
<br>Harmful critters lurk, <br>
the river water is too cold.
<br>If you do make it to your cave,
<br>just know: groundhog day has come.</p>
<h2>Controls</h2>
<div class="controls">
<h5 class="up-arrow">↑</h5>
<h5 class="left-arrow">←</h5>
<h5 class="down-arrow">↓</h5>
<h5 class="right-arrow">→</h5>
<h5 class="enter">To Restart Your Game Press Enter</h5>
</div>
</section>
<canvas id="canvas" width="400" height="400"></canvas>
<article class="game-score">Current Score - 0</article>
<section class="right-info">
<a href="https://github.com/semaurer/ToTheDen">View The Code</a>
<a href="https://semaurer.github.io">Portfolio</a>
<a href="https://www.linkedin.com/in/stephen-maurer">LinkedIn</a>
<a href="https://angel.co/stephen-maurer">AngelList</a>
<button class="audio-toggle" name="button">Mute Audio</button>
</section>
</main>
<script type="text/javascript" src="lib/bundle.js"></script>
</body>
</html>