-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
49 lines (44 loc) · 1.29 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redirecting to relation-graph.com</title>
<style>
html,
body {
height: 100%;
margin: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
color: #1f2937;
}
a {
color: #2563eb;
}
</style>
</head>
<body>
<p>You will be redirected to relation-graph.com in <span id="countdown">3</span> seconds, <a href="https://relation-graph.com/">go now</a>.</p>
<script>
(function () {
var redirectUrl = 'https://relation-graph.com/';
var secondsLeft = 3;
var countdown = document.getElementById('countdown');
var timer = window.setInterval(function () {
secondsLeft -= 1;
if (secondsLeft <= 0) {
window.clearInterval(timer);
window.location.href = redirectUrl;
return;
}
countdown.textContent = secondsLeft;
}, 1000);
}());
</script>
</body>
</html>