-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.html
130 lines (123 loc) · 3.81 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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>404 Error | fáilte</title>
<!-- ADD STYLESHEET -->
<link rel="stylesheet" href="/assets/css/styles.css" />
<!-- ADD FONTAWESOME -->
<script
src="https://kit.fontawesome.com/ee1bd5fe1b.js"
crossorigin="anonymous"
></script>
<!-- ADD GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap"
rel="stylesheet"
/>
<!-- ADD FAVICON -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/img/faviconfavicon-16x16.png"
/>
<link rel="manifest" href="/assets/img/favicon/site.webmanifest" />
</head>
<body>
<div id="container">
<!-- HEADER -->
<header>
<div id="container-header">
<div id="nav-logo">
<a href="/index.html" aria-label="Click to go to Homepage">fáilte</a>
</div>
<nav>
<ul>
<li><a href="/index.html" aria-label="Go to Map page">Map</a></li>
<li>
<a href="/play.html" aria-label="Go to Geo Game page">Play</a>
</li>
<li>
<a
href="/about.html"
aria-label="Go to About page"
>About</a
>
</li>
<li>
<a href="/contact.html" aria-label="Go to Contact page"
>Contact</a
>
</li>
</ul>
</nav>
</div>
</header>
<!-- MAIN CONTENT -->
<main>
<div id="container-about-contact-page">
<div class="about-contact-container">
<h1>Oops! Something went wrong.</h1>
<p class="about-contact-paragraph">
The page you're looking for doesn't seem to exist. Please click below to go back to the homepage.
</p>
<a class="primary-cta" href="/index.html" aria-label="Go to Map"
>Home</a
>
</div>
</div>
</main>
<!-- FOOTER -->
<footer>
<div id="footer-links">
<a
href="https://github.com/CarlMurray/failte-pp2"
target="_blank"
title="See this project's Repo on GitHub"
aria-label="See this project's Repo on GitHub"
><img
class="footer-icon"
src="/assets/img/footer/footer-github-icon.svg"
alt="GitHub Logo"
/></a>
<a
href="https://carlmurray.design"
target="_blank"
title="View my portfolio of projects"
aria-label="View my portfolio of projects"
><img
class="footer-icon"
src="/assets/img/footer/footer-portfolio-icon.svg"
alt="Personal Portfolio Logo"
/></a>
<a
href="https://www.linkedin.com/in/carljmurray/"
target="_blank"
title="Connect with me on LinkedIn"
aria-label="Connect with me on LinkedIn"
><img
class="footer-icon"
src="/assets/img/footer/footer-linkedin-icon.svg"
alt="LinkedIn Logo"
/></a>
</div>
</footer>
</div>
</body>
</html>