-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 2.07 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
<!--
Sources:
1. https://www.ageofempires.com/games/age-of-empires-iv/civilizations/holy-roman-empire/#:~:text=The%20Holy%20Roman%20Empire%20is,the%20years%20936%2D1517%20CE.
2. https://wingsisup.com/
3. https://ageofempires.fandom.com/wiki/Age_of_Empires_IV
-->
<!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>Aoe4History</title>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<script src="https://kit.fontawesome.com/dc4c32a522.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="navigation-bar">
<nav class="navigation-bar-text">
<ul>
<li><a href="index.html">Main menu</a></li>
<li><a href="about.html">About us</a></li>
</ul>
</nav>
</div>
</header>
<div class="introduction">
<h1>Welcome to Age of history</h1>
<p1>Historical context of all the units, landmarks, building , technology and overall design of all the civilizations</p1>
</div>
<div class="civ-selector">
<!-- Div is for the flags of the civilizations-->
<a href="HolyRomanEmpire.html"><img src = "images/CivIcon-HREAoE4.webp" alt="Image of HRE flag" width="200"></a>
<a href="China.html"><img src = "images/Chinese.webp" alt="Image of Chinese flag" width="200"></a>
<img src = "images/English.webp" alt="Image of English flag" width="200" >
<a href="French.html"> <img src = "images/French.webp" alt="Image of French flag" width="200" ></a>
<img src = "images/Mongolia.webp" alt="Image of Mongolia flag" width="200" >
<img src = "images/Ottoman empire.webp" alt="Image of Ottoman Empire flag" width="200" >
</div>
<footer>
<p>who needs a footer, Copyright © 2022</p>
</footer>
<script>
console.log('helllo')
</script>
</body>
</html>