-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path404.html
53 lines (40 loc) · 1.45 KB
/
404.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
<!DOCTYPE html>
<html>
<style type="text/css" media="screen">
h2[id]::before {
display: block;
content: " ";
margin-top: -125px;
height: 125px;
}
</style>
<script src="scripts/matomo.js" defer></script>
<script src="scripts/myscripts.js" defer></script>
<script src="scripts/includeHTML.js" defer></script>
<div data-include="header.html"></div>
<body>
<div data-include="navbar.html"></div>
<main>
<div class="opener container" align="center">
<p class="lead mb-4">
Error 404: Page not found.
</p>
<div>
<p class="mb-2">
Looks like you followed a bad link.
Here's a link to the <a href="index.html">homepage</a>.
</p>
<p>
If there's a problem with the website, please <a href="contact.html">let us know</a>.
</p>
</div>
</div>
</main>
<!-- Footer Section -->
<div data-include="footer.html"></div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="scripts/navbarCollapse.js" defer></script>
</body>
</html>