-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHREunits.html
78 lines (53 loc) · 2.59 KB
/
HREunits.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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>HRE Units</title>
<link href="css/stylesheetCiv.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>The units of the Holy Roman Empire</h1>
<h2>Military Units</h2>
<div class="parent-div">
<div >
<button id="spearmen-button"><img src="images/Generic-Spearmen-Icon.webp"></button>
<button id="MAA-Button"><img src="images/Generic-MAA-Icon.webp"></button>
<button id="land-button"><img src="images/Landsknetcht-Icon.webp"></button>
<br>
<button id="archer-button"><img src="images/Generic-Archer-Icon.webp"></button>
<button id="crossbow-button"><img src="images/Crossbowman-Icon.webp"></button>
<button id="handcannoner-button"><img src="images/Handcannoneer-ICon.webp"></button>
<br>
<button id="horsemen-button"><img src="images/Horseman-Icon.webp"></button>
<button id="knight/lancer-button"><img src="images/Knight-Icon.webp"></button>
</div>
<div id="child-div-2" class="text-div">
<p id="MAA-text" class="actual-text">
High armour infantry with good damage. <br>
+ High armour <br>
- Weak against crossbows and knights/lancers
</p>
<p id="landknecht-text">Landknecht Sample text</p>
<p id="spearmen-text">Spearmen sample text</p>
<p id="archer-text">Archer sample text</p>
<p id="crossbow-text">Crossbow sample text</p>
<p id="handcannoner-text">Handconner sample text</p>
<p id="horsemen-text">Horsemen sample text</p>
<p id="knight-text">Knight sample text</p>
</div>
<div id="child-div-3" class="image-child-div">
<img width="800" id="singleMAAUnit" src="images/HREsingleEliteMAA.png" class="HREmaaUnit">
<img width="800" id="single-spearman-unit" src="images/Spearmen-unit.png">
<img width="800" id="landknetcht-unit" src="images/singleLandsknechtUnit.jpg">
<img width="800" id="archer-unit">
<img width="800" id="crossbow-unit">
<img width="800" id="handcannoner-unit">
<img width="800" id="horeseman-unit">
<img width="800" id="knight-unit">
</div>
</div>
<script src="main.js"></script>
</body>
</html>