This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (69 loc) · 1.99 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coming Soon</title>
<style>
body {
font-family: "Arial", sans-serif;
text-align: center;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-size: 36px;
color: #333;
}
p {
font-size: 18px;
color: #666;
margin-bottom: 15px;
}
.discord-link {
font-size: 20px;
color: #007bff;
text-decoration: none;
}
/* Media query for iPad and lower resolutions */
@media only screen and (max-width: 768px) {
.container {
position: relative;
top: 0;
left: 0;
transform: none;
padding: 2em;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Kreedz is Coming Soon!</h1>
<hr>
<div>
<p>Kreedz is thrilled to announce that our long-awaited website is finally set to launch on</p>
<h2>April 14th 2024</h2>
<p>Thank you for your patience!</p>
<p>-</p>
<p>April 2024</p>
</div>
<hr>
<div>
<p>Xtreme-Jumps is excited to announce its return as Kreedz in the near future. Prepare for an extraordinary experience!</p>
<p>We apologize for the brief hiatus. The previous website encountered technical challenges, but rest assured, we are diligently working to reintroduce a brand new one with enhancements in the coming weeks.</p>
<p>In the meantime, connect with us on our Discord community:</p>
<a class="discord-link" href="https://discord.gg/jFQbf4XVpj" target="_blank">Join our Discord Server</a>
<p>-</p>
<p>January 2024</p>
</div>
</div>
</body>
</html>