-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (68 loc) · 2.11 KB
/
index.html
File metadata and controls
78 lines (68 loc) · 2.11 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Adventure Game</title>
</head>
<body>
<div class="photo">
<img id="locationImage" src="" style="height: 150px; width: 500px;">
<text id="description"></button>
</div>
<div class = "text" id = "storyText"></div>
<p>What will you do?</p>
<div class = "container">
<div id = "option-buttons" class = "btnsGrid">
<button class = "btn">Option 1</button>
<button class = "btn">Option 2</button>
<button class = "btn">Option 3</button>
<button class = "btn">Option 4</button>
</div>
</div>
<section class="section">
<div id="battleLog"></div>
<div>
<table>
<tr>
<th>Opponent 1</th>
</tr>
<tr>
<td id="log1"></td>
</tr>
</table>
</div>
<div class="characterStat">
<table id="characterInfo">
<tr>
<td id="mainCharacterName"></td>
</tr>
<tr>
<td id="health">Health:</td>
</tr>
<tr>
<td id="attackPower">Attack Power:</td>
</tr>
<tr>
<td><button id="toggleInventoryBtn">Hide Inventory</button></td>
</tr>
<tr>
<td id="currentInventory"></td>
</tr>
</table>
</div>
<div>
<table>
<tr>
<th>Opponent 2</th>
</tr>
<tr>
<td id="log2"></td>
</tr>
</table>
</div>
</section>
<script src="app.js"></script>
</body>
</html>