-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (122 loc) · 3.7 KB
/
index.html
File metadata and controls
134 lines (122 loc) · 3.7 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WowzaTM Subdomain Available</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background: #121212;
color: #fff;
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
align-items: center;
}
header {
background: linear-gradient(90deg, #4CAF50, #8BC34A); /* Different color choice */
padding: 30px;
text-align: center;
color: white;
width: 100%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
header h1 {
font-size: 3em;
font-weight: 700;
letter-spacing: -0.5px;
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
text-align: center;
}
.content {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 40px;
max-width: 900px;
text-align: center;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1.5s ease-out;
}
.content h2 {
font-size: 2.5em;
font-weight: 600;
color: #8BC34A;
margin-bottom: 20px;
}
.content p {
font-size: 1.2em;
line-height: 1.6;
color: #ccc;
margin-bottom: 30px;
}
.btn {
padding: 15px 40px;
background: #4CAF50;
color: white;
font-size: 1.1em;
font-weight: 600;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s ease, transform 0.3s ease;
text-transform: uppercase;
}
.btn:hover {
background: #388E3C;
transform: translateY(-5px);
}
footer {
background: #1e1e1e;
color: white;
padding: 20px;
text-align: center;
font-size: 0.9em;
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}
footer p {
margin: 0;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<header>
<h1>Subdomain Available</h1>
</header>
<main>
<div class="content">
<h2>Oops! This subdomain isn't in use yet.</h2>
<p>The subdomain you're trying to reach hasn't been claimed. This means it's available for use! Want to grab it? Click the button below to start your journey with WowzaTM and claim your unique space on the web!</p>
<button class="btn" onclick="window.location.href='https://partners.wowzatm.me/'">Claim This Subdomain</button>
<br>
<button class="btn" onclick="window.location.href='https://discord.gg/invite/bionic/ebUNwVN68F'">Purchase This Subdomain</button>
</div>
</main>
<footer>
<p>© 2024 WowzaTM. All rights reserved.</p>
</footer>
</body>
</html>