-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 1.57 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
49
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dungeon Crawler</title>
<link rel="stylesheet" href="dungeon.css">
</head>
<body>
<h1>Dungeon Crawler</h1>
<div class="main-body">
<div id="chatbox-container">
<div id="chatbox">
<p class="message">
</p>
</div>
</div>
<div id="fightscreen">
<div id="boss-container">
<div id="boss">
<p id="enemy-name"></p>
</div>
<div class="health-points">
<p id="enemy-hp">health: 5hp</p>
<div class="health-bar" id="healthBar2"></div>
<p id="enemy-description"></p>
</div>
</div>
<div id="player-container">
<div id="player">
<p>Player</p>
<div id="abilities"></div>
</div>
<div class="health-points">
<p id="player-hp">health: 10hp</p>
<div class="health-bar" id="healthBar"></div>
</div>
</div>
<p id="loadingindicator">loading</p>
</div>
</div>
</body>
<script src="main.js"></script>
<script src="dungeon.js"></script>
</html>