-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
441 lines (399 loc) · 19.8 KB
/
Copy pathindex.html
File metadata and controls
441 lines (399 loc) · 19.8 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
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snow Development - Free Websites</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Lucide Icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background: #0a0a0f;
color: #fff;
overflow-x: hidden;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3),
0 0 40px rgba(59, 130, 246, 0.2);
}
50% {
box-shadow: 0 0 40px rgba(59, 130, 246, 0.6),
0 0 60px rgba(59, 130, 246, 0.4);
}
}
@keyframes snowFall {
0% { transform: translateY(-10vh) rotate(0deg); }
100% { transform: translateY(110vh) rotate(360deg); }
}
.snowflake {
position: fixed;
color: #3b82f6;
user-select: none;
pointer-events: none;
opacity: 0.2;
font-size: 1.5rem;
animation: snowFall linear infinite;
z-index: 1;
}
.glass {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.gradient-text {
background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.offer-badge {
background: linear-gradient(135deg, #3b82f6, #2563eb);
animation: pulse-glow 2s infinite;
border-radius: 50px;
padding: 8px 24px;
display: inline-block;
font-weight: 600;
letter-spacing: 1px;
}
.gmail-highlight {
font-size: 2.5rem;
font-weight: 800;
background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: inline-block;
border-bottom: 3px solid #3b82f6;
padding-bottom: 10px;
margin: 20px 0;
}
@media (max-width: 768px) {
.gmail-highlight {
font-size: 1.8rem;
}
}
</style>
</head>
<body>
<!-- Snow Effect -->
<div id="snow-container"></div>
<!-- Simple Navigation -->
<nav class="fixed w-full z-50 glass" style="background: rgba(10, 10, 15, 0.9);">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-20">
<div class="flex items-center space-x-2">
<i data-lucide="snowflake" class="w-8 h-8 text-blue-400"></i>
<span class="text-2xl font-bold tracking-tight">Snow<span class="text-blue-400">Dev</span></span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="text-gray-300 hover:text-white transition">Home</a>
<a href="#offers" class="text-gray-300 hover:text-white transition">Offers</a>
<a href="#websites" class="text-gray-300 hover:text-white transition">Websites</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center relative pt-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 text-center">
<!-- Limited Time Offer Badge -->
<div class="offer-badge mb-8">
⚡ LIMITED TIME OFFER ⚡
</div>
<h1 class="text-5xl md:text-7xl font-bold mb-6">
Get Your <span class="gradient-text">Free Website</span>
</h1>
<p class="text-xl md:text-2xl text-gray-400 mb-8 max-w-3xl mx-auto">
Professional websites for businesses. Limited time offer.
</p>
<!-- Only Gmail Mention - No Button -->
<div class="my-16">
<p class="text-gray-400 mb-4">📧 Contact via email:</p>
<div class="gmail-highlight">
7arhd7123@gmail.com
</div>
<p class="text-gray-500 mt-4">Send us your requirements</p>
</div>
<!-- Simple Stats -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 max-w-4xl mx-auto mt-16">
<div class="glass p-6 rounded-xl">
<div class="text-3xl font-bold gradient-text">50+</div>
<div class="text-gray-400">Websites Given</div>
</div>
<div class="glass p-6 rounded-xl">
<div class="text-3xl font-bold gradient-text">2 Days</div>
<div class="text-gray-400">Delivery</div>
</div>
<div class="glass p-6 rounded-xl">
<div class="text-3xl font-bold gradient-text">Free</div>
<div class="text-gray-400">Forever</div>
</div>
<div class="glass p-6 rounded-xl">
<div class="text-3xl font-bold gradient-text">24/7</div>
<div class="text-gray-400">Support</div>
</div>
</div>
</div>
</section>
<!-- Why Free Section -->
<section id="offers" class="py-24 bg-[#0f0f17]">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-sm font-semibold text-blue-400 uppercase tracking-wider mb-4">Why Free?</h2>
<h3 class="text-4xl md:text-5xl font-bold mb-4">Building Our Portfolio</h3>
<p class="text-gray-400 text-lg max-w-2xl mx-auto">
We're offering free websites to build our portfolio. You get a premium website, we showcase your business.
</p>
</div>
<!-- Email Reminder -->
<div class="text-center mb-12">
<p class="text-xl text-gray-300">📧 Email us at:</p>
<p class="text-3xl md:text-4xl font-bold text-blue-400 mt-2">7arhd7123@gmail.com</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="glass p-8 rounded-2xl text-center">
<div class="bg-blue-600/20 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-lucide="heart" class="w-10 h-10 text-blue-400"></i>
</div>
<h4 class="text-2xl font-bold mb-3">Win-Win</h4>
<p class="text-gray-400">You get a free website, we get a portfolio piece.</p>
</div>
<div class="glass p-8 rounded-2xl text-center">
<div class="bg-blue-600/20 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-lucide="zap" class="w-10 h-10 text-blue-400"></i>
</div>
<h4 class="text-2xl font-bold mb-3">2-Day Delivery</h4>
<p class="text-gray-400">Your website will be ready in just 2 days.</p>
</div>
<div class="glass p-8 rounded-2xl text-center">
<div class="bg-blue-600/20 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-lucide="infinity" class="w-10 h-10 text-blue-400"></i>
</div>
<h4 class="text-2xl font-bold mb-3">Premium Quality</h4>
<p class="text-gray-400">Same quality as paid websites, completely free.</p>
</div>
</div>
</div>
</section>
<!-- Available Websites -->
<section id="websites" class="py-24">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-sm font-semibold text-blue-400 uppercase tracking-wider mb-4">Choose Your Website</h2>
<h3 class="text-4xl md:text-5xl font-bold mb-4">Available Templates</h3>
<p class="text-gray-400 text-lg max-w-2xl mx-auto mb-8">
All websites are premium quality and completely free.
</p>
<!-- Email Reminder -->
<div class="inline-block glass px-8 py-4 rounded-full">
<span class="text-gray-300">📧 Request at: </span>
<span class="text-blue-400 font-bold text-xl">7arhd7123@gmail.com</span>
</div>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Business Website -->
<div class="glass rounded-2xl overflow-hidden">
<div class="h-40 bg-gradient-to-br from-blue-600 to-purple-600 relative flex items-center justify-center">
<i data-lucide="building-2" class="w-16 h-16 text-white/30"></i>
<div class="absolute top-4 right-4 bg-green-500 text-white px-3 py-1 rounded-full text-sm">
FREE
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Business Website</h3>
<p class="text-gray-400 mb-4">Perfect for local businesses and startups.</p>
<ul class="space-y-2 text-sm text-gray-400">
<li>✓ 5 Pages</li>
<li>✓ Contact Form</li>
<li>✓ Mobile Responsive</li>
</ul>
</div>
</div>
<!-- E-commerce Website -->
<div class="glass rounded-2xl overflow-hidden">
<div class="h-40 bg-gradient-to-br from-green-600 to-blue-600 relative flex items-center justify-center">
<i data-lucide="shopping-cart" class="w-16 h-16 text-white/30"></i>
<div class="absolute top-4 right-4 bg-green-500 text-white px-3 py-1 rounded-full text-sm">
FREE
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">E-commerce Store</h3>
<p class="text-gray-400 mb-4">Start selling online.</p>
<ul class="space-y-2 text-sm text-gray-400">
<li>✓ Product Listings</li>
<li>✓ Shopping Cart</li>
<li>✓ Payment Ready</li>
</ul>
</div>
</div>
<!-- Portfolio Website -->
<div class="glass rounded-2xl overflow-hidden">
<div class="h-40 bg-gradient-to-br from-purple-600 to-pink-600 relative flex items-center justify-center">
<i data-lucide="camera" class="w-16 h-16 text-white/30"></i>
<div class="absolute top-4 right-4 bg-green-500 text-white px-3 py-1 rounded-full text-sm">
FREE
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Portfolio</h3>
<p class="text-gray-400 mb-4">Showcase your work.</p>
<ul class="space-y-2 text-sm text-gray-400">
<li>✓ Gallery Layout</li>
<li>✓ Project Showcase</li>
<li>✓ Testimonials</li>
</ul>
</div>
</div>
<!-- Blog Website -->
<div class="glass rounded-2xl overflow-hidden">
<div class="h-40 bg-gradient-to-br from-yellow-600 to-orange-600 relative flex items-center justify-center">
<i data-lucide="newspaper" class="w-16 h-16 text-white/30"></i>
<div class="absolute top-4 right-4 bg-green-500 text-white px-3 py-1 rounded-full text-sm">
FREE
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Blog/News</h3>
<p class="text-gray-400 mb-4">Start your blog.</p>
<ul class="space-y-2 text-sm text-gray-400">
<li>✓ Article Layout</li>
<li>✓ Categories</li>
<li>✓ Comments</li>
</ul>
</div>
</div>
<!-- Restaurant Website -->
<div class="glass rounded-2xl overflow-hidden">
<div class="h-40 bg-gradient-to-br from-red-600 to-yellow-600 relative flex items-center justify-center">
<i data-lucide="utensils" class="w-16 h-16 text-white/30"></i>
<div class="absolute top-4 right-4 bg-green-500 text-white px-3 py-1 rounded-full text-sm">
FREE
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Restaurant</h3>
<p class="text-gray-400 mb-4">Digital menu & reservations.</p>
<ul class="space-y-2 text-sm text-gray-400">
<li>✓ Menu Display</li>
<li>✓ Reservation Form</li>
<li>✓ Photo Gallery</li>
</ul>
</div>
</div>
<!-- Landing Page -->
<div class="glass rounded-2xl overflow-hidden">
<div class="h-40 bg-gradient-to-br from-cyan-600 to-blue-600 relative flex items-center justify-center">
<i data-lucide="target" class="w-16 h-16 text-white/30"></i>
<div class="absolute top-4 right-4 bg-green-500 text-white px-3 py-1 rounded-full text-sm">
FREE
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Landing Page</h3>
<p class="text-gray-400 mb-4">High-converting sales page.</p>
<ul class="space-y-2 text-sm text-gray-400">
<li>✓ Call-to-Action</li>
<li>✓ Lead Capture</li>
<li>✓ Analytics Ready</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Simple Process -->
<section class="py-24 bg-[#0f0f17]">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-sm font-semibold text-blue-400 uppercase tracking-wider mb-4">Simple Process</h2>
<h3 class="text-4xl md:text-5xl font-bold mb-4">3 Steps to Your Free Website</h3>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-4xl mx-auto">
<div class="text-center">
<div class="text-5xl font-bold text-blue-400/30 mb-4">1</div>
<h4 class="text-xl font-bold mb-2">Email Us</h4>
<p class="text-gray-400">7arhd7123@gmail.com</p>
</div>
<div class="text-center">
<div class="text-5xl font-bold text-blue-400/30 mb-4">2</div>
<h4 class="text-xl font-bold mb-2">Discuss</h4>
<p class="text-gray-400">Share your requirements</p>
</div>
<div class="text-center">
<div class="text-5xl font-bold text-blue-400/30 mb-4">3</div>
<h4 class="text-xl font-bold mb-2">Get Website</h4>
<p class="text-gray-400">Receive in 2 days</p>
</div>
</div>
<!-- Final Email Reminder -->
<div class="text-center mt-16">
<p class="text-2xl text-gray-300 mb-2">📧 Contact:</p>
<p class="text-5xl md:text-6xl font-bold gradient-text">7arhd7123@gmail.com</p>
<p class="text-gray-500 mt-4">Limited time offer • First 50 businesses</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-[#0f0f17] border-t border-white/10 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="flex items-center justify-center space-x-2 mb-6">
<i data-lucide="snowflake" class="w-6 h-6 text-blue-400"></i>
<span class="text-xl font-bold">Snow<span class="text-blue-400">Dev</span></span>
</div>
<p class="text-gray-400 mb-4">
© 2024 Snow Development. All rights reserved.
</p>
<p class="text-gray-500 text-sm">
For free websites, email: <span class="text-blue-400 font-medium">7arhd7123@gmail.com</span>
</p>
</div>
</footer>
<script>
// Create snow effect
function createSnowflakes() {
const container = document.getElementById('snow-container');
if (!container) return;
for (let i = 0; i < 30; i++) {
const snowflake = document.createElement('div');
snowflake.className = 'snowflake';
snowflake.innerHTML = '❄️';
snowflake.style.left = Math.random() * 100 + 'vw';
snowflake.style.animationDuration = Math.random() * 3 + 2 + 's';
snowflake.style.fontSize = Math.random() * 20 + 10 + 'px';
container.appendChild(snowflake);
}
}
// Initialize
document.addEventListener('DOMContentLoaded', () => {
createSnowflakes();
lucide.createIcons();
});
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});
</script>
</body>
</html>