-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
45 lines (45 loc) · 1.95 KB
/
404.html
File metadata and controls
45 lines (45 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Hello Fangaming">
<link rel="shortcut icon" href="/favicon.ico">
<title>404 - Hello Fangaming</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css" integrity="sha512-oc9+XSs1H243/FRN9Rw62Fn8EtxjEYWHXRvjS43YtueEewbS6ObfXcJNyohjHqVKFPoXXUxwc+q1K7Dee6vv9g==" crossorigin="anonymous" />
<!-- Custom styles for this template -->
<link href="/new-age.min.css" rel="stylesheet">
</head>
<body style="background:#222222!important;">
<header class="masthead" style="background:#222222!important;height:100%!important;">
<div class="container h-100" style="height:100%!important;">
<div class="row h-100 justify-content-center" style="height:100%!important;">
<div class="col-sm-12 col-lg-8 my-auto text-center">
<h1 style="font-size:24vw;">404</h1>
<h3>File Not Found</h3>
</div>
<div class="col-sm-12 col-lg-8 my-auto">
<h5 class="text-justify mb-4"><script>document.write(window.location.href);</script> does not exist on this server.</h5>
</div>
<div class="col-sm-12 my-auto">
<h2 class="text-center">Redirecting in <span id="countdown">10</span> seconds...</h2>
</div>
</div>
</div>
</header>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<!-- Countdown redirect -->
<script>
var timer = 10;
$(function() {
setInterval(function () {
if (timer === 1) window.location.href = "https://hellofangaming.github.io/";
if (timer > 0) timer--;
$("#countdown").text(timer);
}, 1000);
});
</script>
</body>
</html>