-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
35 lines (34 loc) · 1.93 KB
/
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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirect Page</title>
<script>
function redirect() {
window.location.href = "https://404.madebydanny.uk";
}
setTimeout(redirect, 2000); // Redirect after 2 seconds
</script>
</head>
<style>
a {
color: red;
}
a:hover {
color: black;
}
.floater {
background-color:#dddd;
color:black;
text-align: center;
padding: 5px
}
</style>
<body>
<h1><a href="https://cloudflare.com">Cloudflare</a> will redirect you to <a href="https://404.madebydanny.uk">404.madebydanny.uk</a> shortly...</h1>
<div class="floater">
<p>Performance & Security by <a href="https://cloudflare.com">Cloudflare</a> | Deployed on <a href="https://www.cloudflare.com/network/">Cloudflare Global Network</a> | <a href="https://team.madebydanny.uk">MBD Team</a></p>
</div>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8eaf77a2ec0ae60c',t:'MTczMzAxODI1NS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>