-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscord.html
More file actions
40 lines (36 loc) · 1.19 KB
/
discord.html
File metadata and controls
40 lines (36 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E098DDV3QV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-E098DDV3QV');
</script>
<meta http-equiv="refresh" content="3; URL=https://discord.gg/FJyXzAZa22" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Redirecting...</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body>
<img id="userPhoto" src="./assets/img/icon_outlined_white.png" alt="User Photo">
<p id="userName">If you are not redirected in
<a id="compteEnrera"> 3 </a>
seconds, <a id="hyperlink" href="https://discord.gg/FJyXzAZa22">click here</a>.</p>
<script type="text/javascript">
var countSeconds = 3;
var x = setInterval(function() {
document.getElementById("compteEnrera").innerHTML = countSeconds;
countSeconds -= 1;
}, 1000);
</script>
</body>
<div class="footer">
<hr>
Made with ❤ by the Tanoka Team
</div>
</html>