This repository was archived by the owner on Nov 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path404.html
More file actions
65 lines (50 loc) · 1.29 KB
/
404.html
File metadata and controls
65 lines (50 loc) · 1.29 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Page not found!</title>
<meta name="description" content="The page you requested could not be found.">
<meta name="robots" content="noindex">
<link href="http://fonts.googleapis.com/css?family=Monoton" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
width: 100%;
}
html {
background: #6d3915 url(http://uploads.mky.io/404.gif) no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body { text-align: center; }
h1 {
font-family: "Monoton", cursive;
color: #cf9a56;
font-size: 1500%;
word-wrap: break-word;
line-height: .95;
width: 100%;
position: relative;
top: 50%;
/* http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/ */
transform: translateY(-50%);
text-shadow: 0 0 10px #2d0505,
0 0 10px #2d0505,
0 0 10px #2d0505,
0 0 10px #2d0505,
0 0 10px #2d0505;
opacity: .8;
}
</style>
</head>
<body>
<h1 id="wtf">404</h1>
</body>
</html>