forked from frc1418/frc1418.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
42 lines (39 loc) · 1.3 KB
/
404.html
File metadata and controls
42 lines (39 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>1418 - Page not found</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="/css/404.css">
<meta name="theme-color" content="#d12727">
<link rel="icon" type="image/x-icon" href="/assets/img/favicon.ico">
<link rel="icon" type="image/png" href="/assets/img/favicon.png">
<script>
window.onload = function () {
var count = 30;
var countdownElement = document.querySelector('h4');
var countdownInterval = setInterval(function () {
count--;
countdownElement.textContent = "Back to home in: " + count;
if (count <= 0) {
clearInterval(countdownInterval);
window.location.href = "/";
}
}, 1000);
};
</script>
</head>
<body>
<div class="container">
<div class="left">
<img src="/images/2023-404.png" alt="404 Image">
</div>
<div class="right">
<h2>Oh No!</h2>
<h1>F.R.E.D. could not find that</h1>
<a href="/" class="button">Back To Home</a>
<h4>Back to home in: 30</h4>
</div>
</div>
</body>
</html>