-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (50 loc) · 2.28 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
50
51
52
53
54
55
56
57
58
59
<!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">
<link href="css/style.css" rel="stylesheet" />
<title>Document</title>
</head>
<body>
<h1 class="main-header"> Game of thrones ( Power is power ) </h1>
<div class="box">
<div class="person">
<div class="daenerys">
<div class="daenerys-points progress">
<span class="damage dany-color"></span>
</div>
<h2 class="name">Daenerys</h2>
<div class="div-imge">
<img src="images/angry_daenerys.png" class="imge" alt="Person Image" />
<p id="daenerys-status" class="status-message"></p>
<button type="button" id="daenerys-status-btn" class="status"> S </button>
</div>
<button type="button" id="daenerys-attack" class="btn" >Attack</button>
<button type="button" id="daenerys-health" class="btn" >Health</button>
<button type="button" id="daenerys-chossen" class="btn" >Choose</button>
<p id="daenerys-alive"></p>
</div>
</div>
<div class="person">
<div class="k-king">
<div class="k-king-points progress">
<span class="damage king-color"></span>
</div>
<h2 class="name">Knight king</h2>
<div class="div-imge">
<img src="images/happy_king.png" class="imge" alt="Person Image" />
<p id="k-king-status" class="status-message"></p>
<button type="button" id="k-king-status-btn" class="status"> S </button>
</div>
<button type="button" id="k-king-attack" class="btn" >Attack</button>
<button type="button" id="k-king-health" class="btn" >Health</button>
<button type="button" id="k-king-chossen" class="btn" >Choose</button>
<p id="k-king-alive"></p>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>