-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdc.html
33 lines (32 loc) · 949 Bytes
/
dc.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<title>Discord..</title>
<meta name="author" content="MILK">
<script type="text/javascript">
// Funkcja przekierowująca do innego linku
function przekieruj() {
window.location.href = "https://discord.gg/NR99XSuu6k";
}
// Wywołanie funkcji przekierowania po załadowaniu strony
window.onload = przekieruj;
</script>
<style>
body {
background-color: white;
justify-content: center;
text-align: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center top;
}
</style>
</head>
<body>
<p class="text">Redirecting...</p>
</body>
</html>