-
Notifications
You must be signed in to change notification settings - Fork 13
/
404.html
124 lines (109 loc) · 3.62 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ERROR 404</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Favicon Information-->
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.boredht.ml/favicon/apple-touch-icon.png?v=bOXjlPdAPj">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn.boredht.ml/favicon/favicon-32x32.png?v=bOXjlPdAPj">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn.boredht.ml/favicon/favicon-16x16.png?v=bOXjlPdAPj">
<link rel="manifest" href="https://cdn.boredht.ml/favicon/site.webmanifest?v=bOXjlPdAPj">
<link rel="mask-icon" href="https://cdn.boredht.ml/favicon/safari-pinned-tab.svg?v=bOXjlPdAPj" color="#f1c40f">
<link rel="shortxcut icon" href="https://cdn.boredht.ml/favicon/favicon.ico?v=bOXjlPdAPj">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="https://cdn.boredht.ml/favicon/browserconfig.xml?v=bOXjlPdAPj">
<meta name="theme-color" content="#ffffff">
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
body,
html {
height: 100%;
overflow: hidden;
padding: 0;
margin: 0;
}
body {
background: #0000aa;
color: #ffffff;
font-family: courier;
font-size: 12pt;
text-align: center;
margin: 100px;
margin-top: 14%;
}
.neg {
background: #fff;
color: #0000aa;
padding: 2px 8px;
font-weight: bold;
}
p {
margin: 30px 100px;
text-align: left;
width: 650px;
margin-left: auto;
margin-right: auto;
}
a,
a:hover {
color: inherit;
font: inherit;
text-decoration: none;
}
.menu {
text-align: center;
margin-top: 50px;
}
@-webkit-keyframes blinker {
0% {
visibility: visible;
}
50% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
@keyframes blinker {
0% {
visibility: visible;
}
50% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
blink {
-webkit-animation: blinker steps(1) 1s infinite;
animation: blinker steps(1) 1s infinite;
}
</style>
</head>
<body onkeyup="bsod()" onclick="bsod()">
<span class="neg">ERROR 404</span>
<p>
The page is missing or never was written. You can wait and<br /> see if it becomes available again, or you can restart your computer.
</p>
<p>
* Press CTRL+ALT+DEL to restart your computer. You will<br /> lose unsaved information in any programs that are running.
</p>
<a href="/">Press any key to continue <blink>_</blink></a>
</body>
<script>
function bsod() {
window.location.href = '/';
}
</script>
</html>