forked from jfmartinz/ResourceHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Error.html
32 lines (28 loc) · 892 Bytes
/
Error.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Error Page</title>
<link rel="stylesheet" href="error_styles.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="title glitch" data-text="404">404</div>
<div class="description glitch" data-text="PAGE NOT FOUND">PAGE NOT FOUND</div>
</div>
<div class="button-container">
<button class="button" onclick="returnHome()">Return Home</button>
</div>
</div>
<script>
function returnHome() {
document.body.classList.add('fade-out');
setTimeout(() => {
window.location.href = "https://github.com/jfmartinz/ResourceHub";
}, 200);
}
</script>
</body>
</html>