-
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) · 2.08 KB
/
404.html
File metadata and controls
58 lines (58 loc) · 2.08 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">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#b6359c">
<link rel="shortcut icon" href="icons/sus.ico" sizes="48x48">
<link rel="bookmark" href="icons/sus.ico">
<title>404 - AmogOS</title>
<style>
body{
margin: 0;
width: 100%;
height: 100%;
background-color: #66ddcc;
overflow: hidden;
transition: background-color .5s;
}
p{
width: 150%;
margin: 0;
margin-left: -25%;
margin-top: -25%;
text-align: center;
font-size: 128px;
color: #888888;
word-break: break-all;
}
#warning{
position: fixed;
top: 20px;
left: 20px;
margin: 0;
font-size: 18px;
color: #ffffff;
}
::selection{
color: #ffffff;
background-color: transparent;
}
</style>
</head>
<body>
<span id="warning">Our sussy bakas could not locate the requested page... Back to home in 5...</span>
<p id="main">404 404 404 404 404 404 404 404 404 404 404 404 404 404 040 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 420 404 404 404 404 404 404 404 404 404 404 404 040 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 690 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404</p>
<script>
var countdown = 5;
setInterval(function(){
countdown -= 1;
document.getElementById("warning").innerHTML = "Our crewmates could not locate the requested page... Back to home in " + countdown + "...";
if (countdown == 0){
window.location.href = "https://amog-os.github.io";
}
}, 1000);
</script>
</body>
</html>