-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (19 loc) · 824 Bytes
/
index.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
<title>Redirect Notice</title>
<!-- Home thing -->
<link rel="stylesheet" href="https://awashcard0.pages.dev/home-thing/style.css">
<script src='https://awashcard0.pages.dev/home-thing/script.js'></script>
<!-- End home thing -->
<link href="/favicon.ico" type="image/x-icon" rel="shortcut icon"><link href="/my-test/favicon.ico" type="image/x-icon" rel="icon">
<p id="hi">Redirecting soon</p>
<p>If you are not Redirected and the top bar and click pop-up blocked, click it and allow Redirects</p>
<script>
var delayInMilliseconds = 2000;
setTimeout(function() {
location.href = "https://awashcard0.github.io/web-stuff/home/home.html";
document.getElementById("hi").innerHTML = "Redirecting now";
}, delayInMilliseconds);
var delay = 6000;
setTimeout(function() {
window.top.close();
}, delay);
</script>