Spaces:
Running
Running
File size: 41,405 Bytes
b170b09 |
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 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi Host - Premium Web Hosting</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}
.hosting-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
}
.pricing-switch {
position: relative;
display: inline-block;
width: 60px;
height: 30px;
}
.pricing-switch input {
opacity: 0;
width: 0;
height: 0;
}
.pricing-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 34px;
}
.pricing-slider:before {
position: absolute;
content: "";
height: 22px;
width: 22px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .pricing-slider {
background-color: #2563eb;
}
input:checked + .pricing-slider:before {
transform: translateX(30px);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.stats-item {
position: relative;
overflow: hidden;
}
.stats-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.stats-item:hover::after {
transform: scaleX(1);
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-server text-blue-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Multi Host</span>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a>
<a href="#hosting" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Hosting</a>
<a href="#features" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Features</a>
<a href="#about" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">About</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out">Get Started</button>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="sm:hidden hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a>
<a href="#hosting" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Hosting</a>
<a href="#features" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Features</a>
<a href="#about" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a>
<div class="mt-4 pl-3 pr-4">
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-base font-medium transition duration-150 ease-in-out">Get Started</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Premium Web Hosting Made Simple</h1>
<p class="text-xl opacity-90 mb-8">Power your website with our lightning-fast servers, 99.9% uptime guarantee, and 24/7 expert support.</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-bold text-lg transition duration-200">Get Started Now</button>
<button class="border-2 border-white text-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-bold text-lg transition duration-200">Learn More</button>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/11.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/13.jpg" alt="">
</div>
<div class="ml-4">
<p class="text-sm font-medium">Trusted by 10,000+ customers worldwide</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-1 text-sm">4.9/5</span>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2 flex justify-center">
<div class="relative">
<img src="https://illustrations.popsy.co/amber/server-cluster.svg" alt="Hosting Illustration" class="w-full max-w-md floating">
<div class="absolute -bottom-5 -left-5 bg-white p-4 rounded-lg shadow-lg">
<div class="flex items-center">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-check-circle text-green-600"></i>
</div>
<div>
<p class="font-bold">99.9% Uptime</p>
<p class="text-sm text-gray-500">Guaranteed</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="stats-item py-6">
<div class="text-4xl font-bold text-blue-600 mb-2">10K+</div>
<p class="text-gray-500">Happy Customers</p>
</div>
<div class="stats-item py-6">
<div class="text-4xl font-bold text-blue-600 mb-2">99.9%</div>
<p class="text-gray-500">Uptime</p>
</div>
<div class="stats-item py-6">
<div class="text-4xl font-bold text-blue-600 mb-2">24/7</div>
<p class="text-gray-500">Support</p>
</div>
<div class="stats-item py-6">
<div class="text-4xl font-bold text-blue-600 mb-2">1M+</div>
<p class="text-gray-500">Websites Hosted</p>
</div>
</div>
</div>
</section>
<!-- Hosting Plans Section -->
<section id="hosting" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Choose Your Perfect Hosting Plan</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We offer flexible hosting solutions for every need, from personal blogs to enterprise applications.</p>
</div>
<div class="flex justify-center mb-8 items-center">
<span class="mr-4 font-medium">Monthly</span>
<label class="pricing-switch">
<input type="checkbox" id="pricingToggle">
<span class="pricing-slider"></span>
</label>
<span class="ml-4 font-medium">Yearly <span class="text-blue-600">(Save 20%)</span></span>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Starter Plan -->
<div class="hosting-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-900 mb-2">Starter</h3>
<p class="text-gray-600 mb-6">Perfect for personal websites and blogs</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-900 monthly-price">$4.99</span>
<span class="text-4xl font-bold text-gray-900 yearly-price hidden">$3.99</span>
<span class="text-gray-500">/mo</span>
</div>
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-200">Get Started</button>
</div>
<div class="border-t border-gray-200 px-6 py-4">
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>1 Website</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>10GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unmetered Bandwidth</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Free SSL Certificate</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>Free Domain</span>
</li>
</ul>
</div>
</div>
<!-- Business Plan (Featured) -->
<div class="hosting-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-300 border-2 border-blue-500 transform scale-105">
<div class="bg-blue-500 text-white text-center py-2">
<p class="font-bold">MOST POPULAR</p>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-900 mb-2">Business</h3>
<p class="text-gray-600 mb-6">Ideal for growing businesses</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-900 monthly-price">$9.99</span>
<span class="text-4xl font-bold text-gray-900 yearly-price hidden">$7.99</span>
<span class="text-gray-500">/mo</span>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-200">Get Started</button>
</div>
<div class="border-t border-gray-200 px-6 py-4">
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited Websites</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>50GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unmetered Bandwidth</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Free SSL Certificate</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Free Domain (1 year)</span>
</li>
</ul>
</div>
</div>
<!-- Enterprise Plan -->
<div class="hosting-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-900 mb-2">Enterprise</h3>
<p class="text-gray-600 mb-6">For high-traffic websites</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-900 monthly-price">$19.99</span>
<span class="text-4xl font-bold text-gray-900 yearly-price hidden">$15.99</span>
<span class="text-gray-500">/mo</span>
</div>
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-200">Get Started</button>
</div>
<div class="border-t border-gray-200 px-6 py-4">
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited Websites</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>100GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unmetered Bandwidth</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Free SSL Certificate</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Free Domain (1 year)</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Why Choose Multi Host?</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Our hosting platform is packed with powerful features to make your website fast, secure, and reliable.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="feature-icon bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-bolt text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Lightning Fast Speed</h3>
<p class="text-gray-600">Our SSD-powered servers and optimized caching ensure your website loads in milliseconds.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="feature-icon bg-purple-100 text-purple-600 mb-4">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Advanced Security</h3>
<p class="text-gray-600">Free SSL certificates, DDoS protection, and malware scanning keep your site secure.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="feature-icon bg-green-100 text-green-600 mb-4">
<i class="fas fa-headset text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">24/7 Expert Support</h3>
<p class="text-gray-600">Our hosting experts are available round the clock to assist you with any issues.</p>
</div>
<!-- Feature 4 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="feature-icon bg-yellow-100 text-yellow-600 mb-4">
<i class="fas fa-server text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">99.9% Uptime</h3>
<p class="text-gray-600">Our redundant infrastructure guarantees your website stays online.</p>
</div>
<!-- Feature 5 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="feature-icon bg-red-100 text-red-600 mb-4">
<i class="fas fa-cloud-upload-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Easy Migration</h3>
<p class="text-gray-600">We'll migrate your existing website for free with no downtime.</p>
</div>
<!-- Feature 6 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="feature-icon bg-indigo-100 text-indigo-600 mb-4">
<i class="fas fa-tachometer-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">Simple Control Panel</h3>
<p class="text-gray-600">Our intuitive dashboard makes managing your hosting a breeze.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Customers Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Don't just take our word for it. Here's what our customers have to say about our hosting services.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson">
<div>
<h4 class="font-bold text-gray-900">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">Small Business Owner</p>
</div>
</div>
<div class="flex mb-2">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700">"Since switching to Multi Host, my website loads twice as fast! Their customer support is incredibly responsive and helped me migrate my site with zero downtime."</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael Chen">
<div>
<h4 class="font-bold text-gray-900">Michael Chen</h4>
<p class="text-gray-500 text-sm">Web Developer</p>
</div>
</div>
<div class="flex mb-2">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700">"I host all my clients' websites with Multi Host. The performance is outstanding, and I've never had any major issues. Their uptime guarantee is real!"</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/67.jpg" alt="Emily Rodriguez">
<div>
<h4 class="font-bold text-gray-900">Emily Rodriguez</h4>
<p class="text-gray-500 text-sm">Blogger</p>
</div>
</div>
<div class="flex mb-2">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700">"The one-click WordPress install saved me so much time. My blog has never been faster, and I love the free SSL certificate that comes with every plan."</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Launch Your Website?</h2>
<p class="text-xl opacity-90 mb-8 max-w-3xl mx-auto">Join thousands of satisfied customers who trust Multi Host for their web hosting needs. Get started in minutes with our easy setup process.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-4 rounded-lg font-bold text-lg transition duration-200">Get Started Now</button>
<button class="border-2 border-white text-white hover:bg-white hover:text-blue-600 px-8 py-4 rounded-lg font-bold text-lg transition duration-200">Chat With Us</button>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="about" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Have questions? We've got answers. If you can't find what you're looking for, our support team is always happy to help.</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full text-left p-4 bg-gray-50 hover:bg-gray-100 transition duration-200 flex justify-between items-center">
<span class="font-medium text-gray-900">What makes Multi Host different from other hosting providers?</span>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-200"></i>
</button>
<div class="faq-content hidden p-4 border-t border-gray-200">
<p class="text-gray-600">Multi Host combines enterprise-grade infrastructure with user-friendly tools to deliver exceptional performance at affordable prices. Our 99.9% uptime guarantee, free website migrations, and 24/7 expert support set us apart from the competition.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full text-left p-4 bg-gray-50 hover:bg-gray-100 transition duration-200 flex justify-between items-center">
<span class="font-medium text-gray-900">Do you offer a money-back guarantee?</span>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-200"></i>
</button>
<div class="faq-content hidden p-4 border-t border-gray-200">
<p class="text-gray-600">Yes! We offer a 30-day money-back guarantee on all our hosting plans. If you're not completely satisfied with our service, you can cancel within the first 30 days for a full refund.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full text-left p-4 bg-gray-50 hover:bg-gray-100 transition duration-200 flex justify-between items-center">
<span class="font-medium text-gray-900">Can I upgrade or downgrade my plan later?</span>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-200"></i>
</button>
<div class="faq-content hidden p-4 border-t border-gray-200">
<p class="text-gray-600">Absolutely! You can upgrade or downgrade your hosting plan at any time through your account dashboard. The changes will take effect immediately, and you'll only pay the difference for the remaining billing period.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full text-left p-4 bg-gray-50 hover:bg-gray-100 transition duration-200 flex justify-between items-center">
<span class="font-medium text-gray-900">How do I migrate my existing website to Multi Host?</span>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-200"></i>
</button>
<div class="faq-content hidden p-4 border-t border-gray-200">
<p class="text-gray-600">We offer free website migrations with all our plans. Simply provide us with your current hosting details, and our migration experts will handle everything for you with zero downtime. You can also use our automated migration plugin for WordPress sites.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full text-left p-4 bg-gray-50 hover:bg-gray-100 transition duration-200 flex justify-between items-center">
<span class="font-medium text-gray-900">What kind of support do you offer?</span>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-200"></i>
</button>
<div class="faq-content hidden p-4 border-t border-gray-200">
<p class="text-gray-600">Our customer support team is available 24/7/365 via live chat, email, and phone. All our support staff are hosting experts who can help with everything from basic setup questions to advanced server configurations. We also maintain an extensive knowledge base with tutorials and guides.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12">
<!-- Company -->
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
</ul>
</div>
<!-- Products -->
<div>
<h3 class="text-lg font-bold mb-4">Products</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">WordPress Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">VPS Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Dedicated Servers</a></li>
</ul>
</div>
<!-- Resources -->
<div>
<h3 class="text-lg font-bold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Knowledge Base</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Webinars</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h3 class="text-lg font-bold mb-4">Contact</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-map-marker-alt text-gray-400 mr-2"></i>
<span class="text-gray-400">123 Hosting St, Cloud City</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone text-gray-400 mr-2"></i>
<span class="text-gray-400">+1 (555) 123-4567</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-gray-400 mr-2"></i>
<span class="text-gray-400">support@multihost.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-server text-blue-500 text-2xl mr-2"></i>
<span class="text-xl font-bold">Multi Host</span>
</div>
<div class="flex space-x-6 mb-4 md:mb-0">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="text-gray-400 text-sm">
© 2023 Multi Host. All rights reserved.
</div>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Mobile menu toggle
const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
// Pricing toggle
const pricingToggle = document.getElementById('pricingToggle');
const monthlyPrices = document.querySelectorAll('.monthly-price');
const yearlyPrices = document.querySelectorAll('.yearly-price');
pricingToggle.addEventListener('change', function() {
if (this.checked) {
monthlyPrices.forEach(price => price.classList.add('hidden'));
yearlyPrices.forEach(price => price.classList.remove('hidden'));
} else {
monthlyPrices.forEach(price => price.classList.remove('hidden'));
yearlyPrices.forEach(price => price.classList.add('hidden'));
}
});
// FAQ accordion
const faqToggles = document.querySelectorAll('.faq-toggle');
faqToggles.forEach(toggle => {
toggle.addEventListener('click', function() {
const content = this.nextElementSibling;
const icon = this.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=docto41/multi-host" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |