forked from bloominstituteoftechnology/JavaScript-IV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
48 lines (42 loc) · 1.2 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
<!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>Fight!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>JavaScript IV Battle - adapted from Nick Batmanglidj's great work</h1>
<div class="battleground-container">
<div class="fighter">
<h3 class="fighter-name1"></h3>
<img class="jim-img" src="jim.jpg" alt="">
<div class="healthbar">
<div class="health1">
<h2 class="healthnum1">10/10</h2>
</div>
</div>
</div>
<div class="fighter">
<h3 class="fighter-name2"></h3>
<img class="dan-img" src="dan.jpg" alt="">
<div class="healthbar">
<div class="health2">
<h2 class="healthnum2">10/10</h2>
</div>
</div>
</div>
</div>
<div class="fight-btn">FIGHT!</div>
<div class="chat-container">
<h2>Chat: </h2>
<div class="chat">
</div>
</div>
</div>
<script src="./assignments/prototype-refactor.js"></script>
</body>
</html>