-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
62 lines (57 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404: Lost at Sea</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
color: #333;
}
.container {
text-align: center;
max-width: 600px;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
}
p {
font-size: 1.2rem;
margin-top: 0.5rem;
}
a {
color: #0073e6;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404: No Page Here</h1>
<p>Oops! Looks like you’ve stumbled into the depths of my site without a map.</p>
<p>You could have:</p>
<ul style="text-align: left; list-style-type: none; padding: 0;">
<li>• Mistyped the URL (we all do it sometimes).</li>
<li>• Found a secret page that doesn’t exist (are you in the Matrix?).</li>
</ul>
<p>What can you do?</p>
<ul style="text-align: left; list-style-type: none; padding: 0;">
<li>• Go back to <a href="/">home base</a> and try again.</li>
<li>• Check out my <a href="https://github.com/lochlanmcelroy/writeup">latest writeup</a> – maybe that’s what you’re looking for?</li>
<li>• Stare at this page and wonder where it all went wrong.</li>
</ul>
</div>
</body>
</html>