-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
58 lines (58 loc) · 1.58 KB
/
404.html
File metadata and controls
58 lines (58 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#" data-bs-theme="dark">
<head>
<title>404 Not Found</title>
<link rel="shortcut icon" href="/pics/horse.png" />
<style>
body {
width: 100%;
height: auto;
margin: 0;
padding: 2% 0;
background: #111;
color: white;
font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 20px;
}
div.container {
width: 100%;
max-width: 600px;
margin: auto;
padding: 0;
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
}
img#garbage {
width: 100%;
height: auto;
max-height: 50vh;
max-width: 50vh;
}
a,
a:visited {
color: rgb(208, 164, 136);
cursor: pointer;
text-decoration: none;
}
a:active,
a:hover {
color: orange;
}
</style>
</head>
<body>
<div style="margin: auto; display: flex; flex-flow: column; align-items: center; justify-content: center; width: 100%; max-width: 360px">
<img id="garbage" src="/pics/ogimage.png" alt="404" />
<h1>404</h1>
<a href="/">Go back to main page</a>
</div>
<script type="text/javascript">
let garbage = document.getElementById("garbage");
setTimeout(function () {
garbage.src = "/pics/horse.png";
}, 5000);
</script>
</body>
</html>