-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrealms.html
68 lines (65 loc) · 2.47 KB
/
realms.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
<!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>Late Antiquity</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<div class="navbar__container">
<a href="/historyweb/index.html" id="navbar__logo">LATE ANTIQUITY</a>
<div class="navbar__toggle" id="mobile-menu" onmouseover="hideDropdown()">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu" >
<li class="navbar__item">
<a href="/historyweb/index.html" class="navbar__links" onmouseover="hideDropdown()"> Home </a>
</li>
<li class="navbar__item">
<a href="/historyweb/economy.html" class="navbar__links" onmouseover="hideDropdown()"> Economy </a>
</li>
<li class="navbar__item">
<a href="/historyweb/realms.html" class="navbar__links" onmouseover="showDropdown()"> Realms </a>
<ul class="dropdown-menu" id="realmDropdown">
<li><a href="/historyweb/romans.html">Roman Empire</a></li>
<li><a href="/historyweb/sasanids.html">Sasanids</a></li>
<li><a href="/historyweb/goths.html">Goths</a></li>
</ul>
</li>
<li class="navbar__btn">
<a href="https://www.youtube.com/watch?v=tsSs0I2dek0&ab_channel=estoire" class="button" onmouseover="hideDropdown()"> About </a>
</li>
</ul>
</div>
</nav>
<!-- Footer Section -->
<div class="footer__container">
<div class="footer__links">
<div class="footer__links--wrapper">
<div class="footer__link--items">
<h2>About</h2>
<a href="https://www.linkedin.com/in/caden-massey-3a10a8276/">Who am I?</a>
</div>
</div>
<div class="footer__links--wrapper">
<div class="footer__link--items">
<h2>Contact</h2>
<a href="mailto:[email protected]">Contact </a>
</div>
</div>
<div class="footer__links--wrapper">
<div class="footer__link--items">
<h2>Learn More</h2>
<a href="https://www.amazon.com/Empires-Barbarians-Fall-Birth-Europe/dp/0199892261">More Information</a>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>