-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
44 lines (43 loc) · 815 Bytes
/
404.html
File metadata and controls
44 lines (43 loc) · 815 Bytes
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
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta charset="UTF-8" />
<title>404</title>
<script type="application/javascript">
function delayTime() {
window.location = "/";
}
</script>
<style type="text/css">
body {
background-color: #fffff0;
}
div#container {
text-align: center;
font-family: sans-serif;
}
div#header {
color: #cd5c5c;
}
div#kenobi {
color: #5f9ea0;
}
div#MIC {
font-size: 128px;
color: #dcdcdc;
}
</style>
</head>
<body onLoad="setTimeout('delayTime()', 5000)">
<div id="container">
<div id="header">
<h1>Error code 404</h1>
</div>
<div id="kenobi">
<h2>Move along, nothing to see here.</h2>
<p><b>This is not the page you're looking for.</b></p>
</div>
<div id="MIC">Ώ</div>
</div>
</body>
</html>