-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.14 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
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Little RPG</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="game-over-overlay">
</div>
<div id="game-over">
<h1>GAME OVER</h1>
<button id="play-again">Play Again</button>
</div>
<div class="wrapper">
<div id="instructions">
<div>
Move with <span class="key">arrows</span>
</div>
<div>
Attack with <span class="key">space</span>
</div>
<div>
Twerk it! with <span class="key">S</span> to HEAL
</div>
</div>
<div class="top">
<div id="score"></div>
<div class="coinContainer">
<div id="coins"></div>
<img id="coinImg" src="./images/coins.png"></img>
</div>
</div>
</div>
<div class="attributes">
<span id="exp"></span>
<span id="level"></span>
<span id="atkStr"></span>
</div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>