-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (53 loc) · 2.19 KB
/
index.html
File metadata and controls
71 lines (53 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blood Pit 2 </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="interface">
<h1>Blood Pit 2 : 100 Demons </h1>
<div id="text"></div>
<div id="foe">
<img id="foe-image" src="" alt="foe">
</div>
<div id="hero">
<img id="hero-image" src="images/hero.png" alt="foe">
</div>
<div id ="foe-info"></div>
<div id ="stats"></div>
<div id="fight" class="button-div">Attack</div>
<div id="herb" class="button-div">Heal</div>
<div id="defend" class="button-div">Defend</div>
<div id="run" class="button-div">White Flag</div>
<div id="focus" class="button-div">Focus</div>
<div id="deathGrip" class="button-div">Death Grip</div>
<div id="ok">Ready</div>
<div id="buyHerb"class="button-div2">Herbs 250g </div>
<div id="buyArmour"class="button-div2">Plate Mail 1200g </div>
<div id="buySword"class="button-div2">Sword 800g</div>
<div id="buyDagger"class="button-div2">Dagger 400g</div>
<div id="gameOver">You fall in battle..<br>Broken and defeated..<br> You gasp your final breath..<br>Click here to continue</div>
<div id="ripOverLay">Game Over</div>
<div id="closed">
<img id="closed-image" src="images/closed.png" alt="Closed">
<span><br>Shop is closed</span>
</div>
<div id="music">
<audio id="backgroundMusic" controls loop>
<source src="music/theme.wav" type="audio/wav">
</audio></div>
<audio id="ending" controls loop>
<source src="music/ending.wav" type="audio/wav">
</audio>
<audio id="rip" controls>
<source src="music/rip.wav" type="audio/wav">
</audio>
</div>
</div>
<script src="./main.js"></scriptsrc></script>
</body>
</html>