-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
21 lines (21 loc) · 732 Bytes
/
404.html
File metadata and controls
21 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<link rel="icon" href="gooseico.ico">
<title>404</title>
<link rel="stylesheet" href="main.css">
<meta charset="UTF-8">
</head>
<body style="text-align: center;">
<h1>lim10dev.github.io - 404</h1> <hr>
This page does not exist. 😳 <br>
You will be redirected to <a href="https://lim10dev.github.io">lim10dev.github.io</a>
<script>
function sleep (time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
sleep(5000).then(() => {
window.location.href = "https://lim10dev.github.io";
});
</script>
</body>
</html>