-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
104 lines (90 loc) · 2.24 KB
/
404.html
File metadata and controls
104 lines (90 loc) · 2.24 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404</title>
<style>
body {
background-color: #0e0e0e;
color: #dcdcdc;
font-family: monospace;
margin: 0;
padding: 28px;
line-height: 1.7;
font-size: 17px;
}
.container {
max-width: 540px;
margin: 0 auto;
}
h1 {
font-size: 1.4rem;
font-weight: normal;
letter-spacing: 0.06em;
margin: 0 0 1.2em 0;
text-transform: lowercase;
}
p {
margin: 0 0 1em 0;
opacity: 0.88;
}
.small {
font-size: 0.95em;
opacity: 0.65;
}
a {
color: #dcdcdc;
text-decoration: none;
border-bottom: 1px dotted #444;
}
a:hover {
opacity: 0.7;
}
.back-link {
display: inline-block;
margin-top: 2em;
padding: 8px 16px;
background: #1a1a1a;
border: 1px solid #2a2a2a;
border-radius: 2px;
text-decoration: none;
border-bottom: none;
}
.back-link:hover {
background: #222;
opacity: 1;
}
.glitch {
font-size: 0.95em;
opacity: 0.7;
margin-top: 1.5em;
color: palevioletred;
}
</style>
</head>
<body>
<div class="container">
<center>
<h1>404</h1>
<p>this page doesn’t exist… or it got eaten by your cousin's cat.</p>
<p>
you might’ve clicked a broken link, or you had a little typo moment
when typing the URL.
</p>
<p class="small">don’t worry. it happens more than you think!</p>
<p class="glitch">
error: 404_not_found<br />
status: resource_unavailable<br />
message: the requested page could not be located on this server<br />
path: invalid or removed
</p>
<p>
try going back home, or pretend this never happened... let's keep this
between us okay?
</p>
<a href="/" class="back-link">← back to safety!!!</a>
</center>
</div>
</body>
</html>