-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
60 lines (47 loc) · 1.17 KB
/
game.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
49
50
51
52
53
54
55
56
57
58
59
<!doctype>
<html>
<head>
<title> Text Adventure Game </title>
<meta charset="UTF-8"/>
<link href="game.css" rel="stylesheet" />
<script src="game.js"></script>
<script src="locations.js"></script>
<script src="player.js"></script>
<script src='http://use.edgefonts.net/de-walpergens-pica.js'></script>
</head>
<body>
<header>
<h1> The House of Usher (not the rapper)</h1>
</header>
<main id="game">
<output id="scene">
<p id="descrip">
</p>
<p id="feedback">
</p>
<label for="input"> Type an action and press Enter </label>
</output>
<section>
<input id="input" type="text" placeholder="Enter an action here..."/>
</section>
</main>
<aside id="inventory">
<h1> Inventory </h1>
<ul>
</ul>
</aside>
<aside id="health">
<h1> Health Points </h1>
<ul>
</ul>
</aside>
<aside id="help">
<h1> Available Actions </h1>
<ul>
</ul>
</aside>
<footer>
Copyright (c) 2014 Aleksandra Simeonova. All rights reserved.
</footer>
</body>
</html>