-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
39 lines (39 loc) · 1.34 KB
/
404.html
File metadata and controls
39 lines (39 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>[404] Nothing to see here...</title>
<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=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
<style>
body {
font-family: "Fira Code SemiBold", monospace;
text-align: center;
color: white;
background-color: black;
font-size: larger;
}
.code {
font-size: 3em;
color: red;
}
.addInfo {
margin-top: 20px;
font-size: 0.8em;
}
a {
color: #E8EFF9;
}
</style>
</head>
<body>
<h1 class="code">-- [404] --</h1>
<h1>Gah!</h1>
<p>Press the "back" button in your browser to go back to the previous page.</p>
<p>Or click <a href="/">here</a> to go to the home page.</p>
<img src="https://http.cat/images/404.jpg" alt="404 Cat" width="300">
<div class="addInfo">
<em><p>Additional info: The requested URL was not found on this server.</p></em>
</div>
</body>
</html>