generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
29 lines (26 loc) · 758 Bytes
/
404.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
<!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">
<link href="assets/css/style.css" rel="stylesheet">
<title>Redirecting </title>
</head>
<body onload="redirect()">
<header>
<div class="logo">
<h1><a href="index.html">The Overlay Test</a></h1>
</div>
</header>
<h2 class="headings">Redirecting....</h2>
<h3 class="sub-headings">Back to The Overlay Test</h3>
<script>
function redirect() {
setTimeout(function () {
window.location.replace("index.html");
}, 600);
}
</script>
</body>
</html>