-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.04 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="5;url=https://www.vpnhood.com" />
<title>Redirecting to VPNHood</title>
<style>
body {
text-align: center;
padding: 50px;
font-family: 'Arial', sans-serif;
}
h1 {
color: #333;
}
p {
color: #666;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Welcome to VPNHood</h1>
<p>You are being redirected to the real VPNHood website. If the redirect does not work, please <a href="https://www.vpnhood.com" onclick="clearTimeout(redirectTimeout)">click here</a>.</p>
<script>
// Set a timeout for the redirect to allow cancellation
var redirectTimeout = setTimeout(function() {
window.location.href = 'https://www.vpnhood.com';
}, 1000);
</script>
</body>
</html>