-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
342 lines (302 loc) · 8.02 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Welcome to maxwellstevenson.com</title>
<meta name="keywords" content="maxwellstevenson.com, vafor, vafor IT, Vafor IT work, buildnow.gg, 1v1.lol, funnyshooter 2, smash karts, unblocked gxmes, gxmes, gxmes hub, gxmes online, gxmes space, gxmes spxce, gxmes space">
<meta name="description" content="Your go-to for everything school-related.">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3858578074050552" crossorigin="anonymous"></script>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="assets/js/main.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9Y3T9NZGP8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-9Y3T9NZGP8');
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Heebo", sans-serif;
}
body {
background-color: #2d2d2d;
color: #eaeaea;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.navbar {
background-color: #3e3e3e;
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
height: 82px;
}
h1 {
color: #a0d1a4;
}
a {
color: #cfcfcf;
text-decoration: none;
font-weight: 600;
margin: 0 10px;
transition: color 0.3s;
}
a:hover {
color: #a0d1a4;
}
.nav-links {
display: flex;
gap: 1rem;
}
/* Redesigned Hero Section */
.hero-section {
background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
text-align: center;
padding: 100px 20px;
position: relative;
overflow: hidden;
}
.hero-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(183, 225, 192, 0.1) 10%, transparent 10.01%);
background-size: 20px 20px;
animation: moveBackground 20s linear infinite;
z-index: 0;
}
.hero-section h1 {
font-size: 4.5rem;
margin-bottom: 20px;
color: #a0d1a4;
animation: fadeInDown 1.5s ease-out;
position: relative;
z-index: 1;
}
.hero-section p {
font-size: 1.5rem;
margin-bottom: 40px;
color: #cfcfcf;
animation: fadeInUp 1.5s ease-out;
position: relative;
z-index: 1;
}
.btn-custom {
background-color: #a0d1a4;
color: #1a1a1a;
border: none;
border-radius: 50px;
padding: 15px 30px;
font-size: 1.2rem;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
animation: fadeIn 2s ease-out;
position: relative;
z-index: 1;
}
.btn-custom:hover {
background-color: #8ec295;
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@keyframes fadeInDown {
0% { opacity: 0; transform: translateY(-20px); }
100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
/* Rest of the styles remain the same */
.main-content {
padding: 40px 20px;
text-align: center;
}
.gxme-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.gxme-card {
background-color: #444;
border-radius: 10px;
padding: 15px;
text-align: center;
color: #eaeaea;
transition: transform 0.2s, box-shadow 0.3s;
width: 175px;
height: 231.8px;
}
.gxme-card img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 10px;
}
.gxme-card:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.gxme-card h3 {
font-size: 1.5rem;
color: #a0d1a4;
margin-top: 10px;
}
.section-separator {
border-top: 2px solid #a0d1a4;
margin: 40px 0;
}
.testimonial-section {
background-color: #3e3e3e;
padding: 40px 20px;
text-align: center;
}
.testimonial-section h2 {
color: #a0d1a4;
font-size: 2rem;
margin-bottom: 20px;
}
.testimonial-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.testimonial {
background-color: #444;
border-radius: 10px;
padding: 20px;
color: #eaeaea;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.3s;
width: 400px;
}
.testimonial p {
margin-bottom: 10px;
}
.testimonial:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.backup-section {
background-color: #3e3e3e;
padding: 40px 20px;
text-align: center;
}
.backup-section h2 {
color: #a0d1a4;
font-size: 2rem;
margin-bottom: 20px;
}
.backup-section p {
color: #eaeaea;
font-size: 1.2rem;
margin-bottom: 20px;
}
.backup-section a {
color: #a0d1a4;
text-decoration: none;
font-weight: 600;
margin: 0 10px;
}
.backup-section a:hover {
color: #8ec295;
}
.footer {
background-color: #3e3e3e;
padding: 15px;
text-align: center;
flex-shrink: 0;
}
.footer p {
font-size: 0.9rem;
}
.about-section {
background-color: #1a1a1a;
padding: 40px 20px;
text-align: center;
}
.about-section h2 {
color: #a0d1a4;
font-size: 2rem;
margin-bottom: 15px;
}
.about-section p {
color: #cfcfcf;
font-size: 1rem;
margin-bottom: 20px;
max-width: 800px;
margin: 0 auto;
}
</style>
</head>
<body>
<nav class="navbar">
<a href="/gxmes">Vafor</a>
<div class="nav-links">
<a href="/gxmes">Gxmes</a>
<a href="#about">About</a>
</div>
</nav>
<section class="hero-section">
<h1>Vafor IT</h1>
<p>Explore over 70+ exciting gxmes from all genres</p>
<button class="btn-custom" onclick="randombutton()">Start Playing</button>
</section>
<section class="main-content">
<h2>Featured gxmes</h2>
<div class="gxme-grid" id="gxmeGrid">
</div>
</section>
<div class="section-separator"></div>
<section class="testimonial-section">
<h2>What Our Users Say</h2>
<div class="testimonial-grid">
<div class="testimonial">
<p>"Maxwellstevenson.com is the the reason why im failing school 😞"</p>
<p>- Jackson C, Alta</p>
</div>
<div class="testimonial">
<p>"This is awesome maxwell, you made this?"</p>
<p>- Jongus R, Alta</p>
</div>
<div class="testimonial">
<p>"I love this site more than my boyfriend!"</p>
<p>- Steven P, Alta</p>
</div>
<div class="testimonial">
<p>"Not brawlstars, not approved"</p>
<p>- Rexton S, Brawlstars</p>
</div>
</div>
</section>
<section class="about-section" id="about">
<h2>About Us</h2>
<p>Hey you. Yeah you. Are you struggling to find reliable unblocked games? Well, you've come to the right place as we have over 70+ games and also have many unblocked links.Just find them in the gxmes page.</p>
</section>
<footer class="footer">
<p>© 2025 maxwellstevenson.com. All Rights Reserved.</p>
<p>Open an issue: <a href="https://github.com/phexus23/phexus23.github.io">Official repository</a></p>
</footer>
</body>
</html>