-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathindex.html
33 lines (29 loc) · 1.08 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
<!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>JavaScript Fungus Fighter</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<div class="container">
<img src="./images/forest-bg-dk.png" alt="forest bg" class="img-bg">
<div class="attacks">
<div class="ap-text">100 AP</div>
<progress id="ap-meter" value="100" max="100"></progress>
<button class="attack-btn arcane-scepter"></button>
<button class="attack-btn entangle"></button>
<button class="attack-btn dragon-blade"></button>
<button class="attack-btn star-fire"></button>
</div>
<div class="enemy">
<div class="hp-text">100 HP</div>
<progress id="hp-meter" value="100" max="100"></progress>
<div class="freaky-fungus walk"></div>
</div>
</div>
</body>
</html>