-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
139 lines (115 loc) · 3.02 KB
/
404.html
File metadata and controls
139 lines (115 loc) · 3.02 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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>
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
body,
html {
height: 100%;
overflow: auto;
padding: 0;
margin: 0;
}
body {
background: #0000aa;
color: #ffffff;
font-family: courier;
font-size: 12pt;
text-align: center;
padding: 50px 10px 10px 0;
}
.neg {
background: #fff;
color: #0000aa;
padding: 2px 8px;
font-weight: bold;
}
p {
text-align: center;
background-color: transparent;
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>
<!-- <script>
window.onload = () => {
currentURL = window.location.href;
lowerCaseURL = currentURL.toLowerCase();
if (currentURL != lowerCaseURL) {
location.replace(lowerCaseURL);
}
};
</script> -->
<body>
<span class="neg">404 <br> Not Found</span>
<p>
Damn, sum went wrong. This page clearly don't exist, yo.
<br>
<span id="shocked">ヾ(◎Д〇)ゞ</span>
</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>
<script>
let x = document.getElementById("shocked");
let isShook = true;
function alternateGreeting() {
if (isShook) {
x.innerHTML = 'ヾ(◎Д〇)ゞ';
} else {
x.innerHTML = 'ヾ(〇Д◎)ゞ';
}
isShook = !isShook;
}
setInterval(alternateGreeting, 1000);
</script>
</body>
</html>