-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 1009 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Monster Killer</title>
<link rel="stylesheet" href="assets/styles/app.css" />
<script src="assets/scripts/vendor.js" defer></script>
<script src="assets/scripts/app.js" defer></script>
</head>
<body>
<!----HTMl is easy to learn-->
<section id="health-levels">
<h2>MONSTER HEALTH</h2>
<progress id="monster-health" max="100" value="100">100%</progress>
<h2>PLAYER HEALTH<span id="bonus-life">1</span></h2>
<progress id="player-health" max="100" value="100">100%</progress>
</section>
<section id="controls">
<button id="attack-btn">ATTACK</button>
<button id="strong-attack-btn">STRONG ATTACK</button>
<button id="heal-btn">HEAL</button>
<button id="log-btn">SHOW LOG</button>
</section>
</body>
</html>