File size: 55,457 Bytes
50d78ff | 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 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Host - Login & Register</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, #6e8efb, #a777e3);
}
.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 {
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
}
.glow {
box-shadow: 0 0 15px rgba(167, 119, 227, 0.5);
}
.auth-form-container {
display: none;
}
.auth-form-container.active {
display: block;
}
.auth-tab {
cursor: pointer;
transition: all 0.3s ease;
}
.auth-tab.active {
background-color: #6e8efb;
color: white;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-lg 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-purple-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Tech Host</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#features" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#pricing" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#about" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">About</a>
<a href="#contact" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Contact</a>
<button id="auth-button" class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">
Login / Register
</button>
</div>
<div class="md:hidden flex items-center">
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-200">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#features" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-purple-600">Features</a>
<a href="#pricing" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-purple-600">Pricing</a>
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-purple-600">About</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-purple-600">Contact</a>
<button id="mobile-auth-button" class="w-full bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium mt-2 transition duration-300">
Login / Register
</button>
</div>
</div>
</nav>
<!-- Auth Modal Overlay -->
<div id="auth-overlay" class="fixed inset-0 bg-black bg-opacity-50 z-50 hidden flex items-center justify-center p-4">
<div class="bg-white rounded-xl shadow-2xl w-full max-w-md overflow-hidden">
<!-- Close Button -->
<div class="flex justify-end p-4">
<button id="close-auth" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times text-xl"></i>
</button>
</div>
<!-- Tabs -->
<div class="flex border-b">
<div class="auth-tab active w-1/2 text-center py-4 font-medium" data-tab="login">
Login
</div>
<div class="auth-tab w-1/2 text-center py-4 font-medium" data-tab="register">
Register
</div>
</div>
<!-- Login Form -->
<div id="login-form" class="auth-form-container active p-8">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Welcome Back</h2>
<form id="loginForm">
<div class="mb-4">
<label for="login-email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="login-email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="your@email.com" required>
</div>
<div class="mb-6">
<label for="login-password" class="block text-gray-700 font-medium mb-2">Password</label>
<input type="password" id="login-password" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="••••••••" required>
<div class="flex justify-end mt-2">
<a href="#" class="text-sm text-purple-600 hover:text-purple-800">Forgot password?</a>
</div>
</div>
<button type="submit" class="w-full gradient-bg hover:opacity-90 text-white px-6 py-3 rounded-md font-medium transition duration-300 mb-4">
Login
</button>
<div class="text-center text-sm text-gray-600">
Don't have an account? <button type="button" class="text-purple-600 hover:text-purple-800 font-medium switch-tab" data-tab="register">Register here</button>
</div>
</form>
<div class="relative my-6">
<div class="absolute inset-0 flex items-center">
<div class="w-full border-t border-gray-300"></div>
</div>
<div class="relative flex justify-center text-sm">
<span class="px-2 bg-white text-gray-500">Or continue with</span>
</div>
</div>
<div class="grid grid-cols-2 gap-4">
<button class="flex items-center justify-center gap-2 bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-3 rounded-md font-medium transition duration-300">
<i class="fab fa-google text-red-500"></i>
Google
</button>
<button class="flex items-center justify-center gap-2 bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-3 rounded-md font-medium transition duration-300">
<i class="fab fa-github text-gray-800"></i>
GitHub
</button>
</div>
</div>
<!-- Register Form -->
<div id="register-form" class="auth-form-container p-8">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Create Your Account</h2>
<form id="registerForm">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="register-firstname" class="block text-gray-700 font-medium mb-2">First Name</label>
<input type="text" id="register-firstname" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="John" required>
</div>
<div>
<label for="register-lastname" class="block text-gray-700 font-medium mb-2">Last Name</label>
<input type="text" id="register-lastname" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="Doe" required>
</div>
</div>
<div class="mb-4">
<label for="register-email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="register-email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="your@email.com" required>
</div>
<div class="mb-4">
<label for="register-password" class="block text-gray-700 font-medium mb-2">Password</label>
<input type="password" id="register-password" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="••••••••" required>
<p class="text-xs text-gray-500 mt-1">Must be at least 8 characters</p>
</div>
<div class="mb-6">
<label for="register-confirm-password" class="block text-gray-700 font-medium mb-2">Confirm Password</label>
<input type="password" id="register-confirm-password" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="••••••••" required>
</div>
<div class="mb-6">
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="register-terms" type="checkbox" class="w-4 h-4 border border-gray-300 rounded bg-gray-50 focus:ring-3 focus:ring-purple-300" required>
</div>
<label for="register-terms" class="ml-2 text-sm text-gray-700">
I agree to the <a href="#" class="text-purple-600 hover:text-purple-800">Terms of Service</a> and <a href="#" class="text-purple-600 hover:text-purple-800">Privacy Policy</a>
</label>
</div>
</div>
<button type="submit" class="w-full gradient-bg hover:opacity-90 text-white px-6 py-3 rounded-md font-medium transition duration-300 mb-4">
Create Account
</button>
<div class="text-center text-sm text-gray-600">
Already have an account? <button type="button" class="text-purple-600 hover:text-purple-800 font-medium switch-tab" data-tab="login">Login here</button>
</div>
</form>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="gradient-bg text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Premium Web Hosting for Your Digital Success</h1>
<p class="text-xl mb-8 text-purple-100">Lightning-fast servers, 99.9% uptime, and expert support to power your online presence.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white hover:bg-gray-100 text-purple-600 px-6 py-3 rounded-md text-lg font-semibold transition duration-300">
Start Free Trial
</button>
<button class="border-2 border-white hover:bg-white hover:text-purple-600 text-white px-6 py-3 rounded-md text-lg font-semibold transition duration-300">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<img src="https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Server room" class="rounded-xl shadow-2xl glow">
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-check-circle text-green-500 text-xl"></i>
</div>
<div>
<p class="text-gray-800 font-semibold">99.9% Uptime</p>
<p class="text-gray-600 text-sm">Guaranteed</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trusted By Section -->
<section class="bg-gray-50 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/120x40?text=TechCorp" alt="TechCorp" class="h-8 opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=DigitalX" alt="DigitalX" class="h-8 opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=WebSolutions" alt="WebSolutions" class="h-8 opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=InnovateCo" alt="InnovateCo" class="h-8 opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=CloudNine" alt="CloudNine" class="h-8 opacity-70 hover:opacity-100 transition duration-300">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Powerful Features for Your Website</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to build, grow, and scale your online presence with confidence.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 border border-gray-100">
<div class="feature-icon bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-bolt text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">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="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 border border-gray-100">
<div class="feature-icon bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">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="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 border border-gray-100">
<div class="feature-icon bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-server text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">99.9% Uptime</h3>
<p class="text-gray-600">Our redundant infrastructure guarantees your website stays online when you need it most.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 border border-gray-100">
<div class="feature-icon bg-yellow-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-headset text-yellow-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">24/7 Expert Support</h3>
<p class="text-gray-600">Our hosting specialists are available around the clock to assist you with any issues.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 border border-gray-100">
<div class="feature-icon bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cloud-upload-alt text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Easy Migration</h3>
<p class="text-gray-600">We'll migrate your existing website for free, with zero downtime during the process.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 border border-gray-100">
<div class="feature-icon bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Scalable Resources</h3>
<p class="text-gray-600">Easily upgrade your hosting plan as your website grows, with no migration required.</p>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="gradient-bg text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<div class="text-4xl font-bold mb-2">10,000+</div>
<div class="text-xl">Happy Customers</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">99.9%</div>
<div class="text-xl">Uptime Guarantee</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">24/7</div>
<div class="text-xl">Support Availability</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">45s</div>
<div class="text-xl">Average Response Time</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the perfect plan for your needs. No hidden fees, no surprises.</p>
</div>
<div class="flex justify-center mb-8">
<div class="inline-flex rounded-md shadow-sm">
<button id="monthly-toggle" class="px-6 py-3 text-sm font-medium rounded-l-lg bg-purple-600 text-white">
Monthly
</button>
<button id="yearly-toggle" class="px-6 py-3 text-sm font-medium rounded-r-lg bg-gray-200 text-gray-700 hover:bg-gray-300">
Yearly (Save 20%)
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Starter Plan -->
<div class="hosting-card bg-white p-8 rounded-xl shadow-md transition duration-300 border border-gray-200">
<div class="mb-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Starter</h3>
<p class="text-gray-600">Perfect for personal websites and blogs</p>
</div>
<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>
<ul class="space-y-3 mb-8">
<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-gray-300 mr-2"></i>
<span>Free Domain</span>
</li>
</ul>
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-3 rounded-md font-medium transition duration-300">
Get Started
</button>
</div>
<!-- Business Plan (Featured) -->
<div class="hosting-card bg-white p-8 rounded-xl shadow-lg transition duration-300 border-2 border-purple-500 relative">
<div class="absolute top-0 right-0 bg-purple-600 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">
MOST POPULAR
</div>
<div class="mb-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Business</h3>
<p class="text-gray-600">Ideal for growing businesses</p>
</div>
<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>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>5 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>
<button class="w-full gradient-bg hover:opacity-90 text-white px-4 py-3 rounded-md font-medium transition duration-300">
Get Started
</button>
</div>
<!-- Enterprise Plan -->
<div class="hosting-card bg-white p-8 rounded-xl shadow-md transition duration-300 border border-gray-200">
<div class="mb-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Enterprise</h3>
<p class="text-gray-600">For high-traffic websites</p>
</div>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-900 monthly-price">$39.99</span>
<span class="text-4xl font-bold text-gray-900 yearly-price hidden">$31.99</span>
<span class="text-gray-500">/mo</span>
</div>
<ul class="space-y-3 mb-8">
<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>200GB 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>
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-3 rounded-md font-medium transition duration-300">
Get Started
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<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 Tech Host.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson">
</div>
<div class="ml-4">
<h4 class="font-semibold">Sarah Johnson</h4>
<p class="text-gray-600 text-sm">Small Business Owner</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Tech Host has been a game-changer for my online store. The speed improvement was noticeable immediately, and their support team helped me migrate seamlessly."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael Chen">
</div>
<div class="ml-4">
<h4 class="font-semibold">Michael Chen</h4>
<p class="text-gray-600 text-sm">Web Developer</p>
</div>
</div>
<p class="text-gray-700 mb-4">"As a developer, I appreciate the flexibility and power of Tech Host's infrastructure. The staging environments and Git integration save me hours of work."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez">
</div>
<div class="ml-4">
<h4 class="font-semibold">Emily Rodriguez</h4>
<p class="text-gray-600 text-sm">Blogger</p>
</div>
</div>
<p class="text-gray-700 mb-4">"I switched to Tech Host after constant downtime with my previous host. The difference is night and day - my site is always up and loads so much faster!"</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Power Your Website?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto text-purple-100">Join thousands of satisfied customers who trust Tech Host for their web hosting needs.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white hover:bg-gray-100 text-purple-600 px-8 py-4 rounded-md text-lg font-semibold transition duration-300">
Get Started Now
</button>
<button class="border-2 border-white hover:bg-white hover:text-purple-600 text-white px-8 py-4 rounded-md text-lg font-semibold transition duration-300">
Chat With Our Team
</button>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="about" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<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">Find answers to common questions about Tech Host services.</p>
</div>
<div class="max-w-3xl mx-auto">
<!-- FAQ Item 1 -->
<div class="mb-6">
<button class="faq-toggle w-full flex justify-between items-center text-left bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300">
<span class="text-lg font-medium text-gray-900">What makes Tech Host different from other hosting providers?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden bg-white p-6 rounded-b-lg border-t border-gray-200">
<p class="text-gray-600">Tech Host combines cutting-edge technology with exceptional customer support. Our SSD-powered servers, proprietary caching system, and 24/7 expert support ensure your website performs at its best. We also offer a 99.9% uptime guarantee and free migrations to make switching hassle-free.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="mb-6">
<button class="faq-toggle w-full flex justify-between items-center text-left bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300">
<span class="text-lg font-medium text-gray-900">Do you offer a money-back guarantee?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden bg-white p-6 rounded-b-lg border-t border-gray-200">
<p class="text-gray-600">Yes! We're confident you'll love Tech Host. If you're not completely satisfied within the first 30 days, we'll give you a full refund, no questions asked. After 30 days, you can cancel anytime and we'll refund the unused portion of your service.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="mb-6">
<button class="faq-toggle w-full flex justify-between items-center text-left bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300">
<span class="text-lg font-medium text-gray-900">Can I upgrade or downgrade my plan later?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden bg-white p-6 rounded-b-lg border-t border-gray-200">
<p class="text-gray-600">Absolutely! You can upgrade or downgrade your hosting plan at any time with just a few clicks. There's no downtime during the process, and you'll only pay the difference for the remaining billing period when upgrading.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="mb-6">
<button class="faq-toggle w-full flex justify-between items-center text-left bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300">
<span class="text-lg font-medium text-gray-900">What kind of support do you offer?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden bg-white p-6 rounded-b-lg border-t border-gray-200">
<p class="text-gray-600">Our support team is available 24/7/365 via live chat, email, and phone. All our support staff are hosting experts (not outsourced) who can help with everything from basic questions to advanced server configurations. We pride ourselves on our average response time of under 45 seconds for live chat.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="mb-6">
<button class="faq-toggle w-full flex justify-between items-center text-left bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300">
<span class="text-lg font-medium text-gray-900">Do you provide website migration services?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden bg-white p-6 rounded-b-lg border-t border-gray-200">
<p class="text-gray-600">Yes! We offer free website migrations for all new customers. Our migration specialists will handle the entire process for you, ensuring zero downtime during the transfer. Whether you're moving from shared hosting, VPS, or another provider, we'll make the transition smooth and stress-free.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Get In Touch</h2>
<p class="text-xl text-gray-600 mb-8">Have questions or need assistance? Our team is here to help you 24/7.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-purple-600 text-xl"></i>
</div>
<div>
<h4 class="font-semibold text-gray-900">Email Us</h4>
<p class="text-gray-600">support@techhost.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600 text-xl"></i>
</div>
<div>
<h4 class="font-semibold text-gray-900">Call Us</h4>
<p class="text-gray-600">+1 (800) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-comment-dots text-green-600 text-xl"></i>
</div>
<div>
<h4 class="font-semibold text-gray-900">Live Chat</h4>
<p class="text-gray-600">Available 24/7</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<h3 class="text-xl font-bold text-gray-900 mb-6">Send Us a Message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="Your name">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="Your email">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="Subject">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="Your message"></textarea>
</div>
<button type="submit" class="w-full gradient-bg hover:opacity-90 text-white px-6 py-3 rounded-md font-medium transition duration-300">
Send Message
</button>
</form>
</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-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-server text-purple-500 text-2xl mr-2"></i>
<span class="text-xl font-bold">Tech Host</span>
</div>
<p class="text-gray-400 mb-4">Premium web hosting solutions for businesses and individuals.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Hosting</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Shared Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">VPS Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Dedicated Servers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">WordPress Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Reseller Hosting</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Partners</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Support</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Knowledge Base</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Community Forum</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">System Status</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact Us</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Tech Host. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Pricing toggle
const monthlyToggle = document.getElementById('monthly-toggle');
const yearlyToggle = document.getElementById('yearly-toggle');
const monthlyPrices = document.querySelectorAll('.monthly-price');
const yearlyPrices = document.querySelectorAll('.yearly-price');
monthlyToggle.addEventListener('click', function() {
monthlyToggle.classList.add('bg-purple-600', 'text-white');
monthlyToggle.classList.remove('bg-gray-200', 'text-gray-700');
yearlyToggle.classList.add('bg-gray-200', 'text-gray-700');
yearlyToggle.classList.remove('bg-purple-600', 'text-white');
monthlyPrices.forEach(price => price.classList.remove('hidden'));
yearlyPrices.forEach(price => price.classList.add('hidden'));
});
yearlyToggle.addEventListener('click', function() {
yearlyToggle.classList.add('bg-purple-600', 'text-white');
yearlyToggle.classList.remove('bg-gray-200', 'text-gray-700');
monthlyToggle.classList.add('bg-gray-200', 'text-gray-700');
monthlyToggle.classList.remove('bg-purple-600', 'text-white');
yearlyPrices.forEach(price => price.classList.remove('hidden'));
monthlyPrices.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('transform');
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
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Auth Modal Functionality
const authOverlay = document.getElementById('auth-overlay');
const authButton = document.getElementById('auth-button');
const mobileAuthButton = document.getElementById('mobile-auth-button');
const closeAuth = document.getElementById('close-auth');
const authTabs = document.querySelectorAll('.auth-tab');
const authForms = document.querySelectorAll('.auth-form-container');
const switchTabs = document.querySelectorAll('.switch-tab');
// Show auth modal
function showAuthModal() {
authOverlay.classList.remove('hidden');
document.body.style.overflow = 'hidden';
}
// Hide auth modal
function hideAuthModal() {
authOverlay.classList.add('hidden');
document.body.style.overflow = '';
}
// Switch between login and register tabs
function switchAuthTab(tabId) {
authTabs.forEach(tab => {
if (tab.dataset.tab === tabId) {
tab.classList.add('active');
} else {
tab.classList.remove('active');
}
});
authForms.forEach(form => {
if (form.id === `${tabId}-form`) {
form.classList.add('active');
} else {
form.classList.remove('active');
}
});
}
// Event listeners
authButton.addEventListener('click', showAuthModal);
mobileAuthButton.addEventListener('click', showAuthModal);
closeAuth.addEventListener('click', hideAuthModal);
authTabs.forEach(tab => {
tab.addEventListener('click', function() {
switchAuthTab(this.dataset.tab);
});
});
switchTabs.forEach(tab => {
tab.addEventListener('click', function() {
switchAuthTab(this.dataset.tab);
});
});
// Form submission
document.getElementById('loginForm').addEventListener('submit', function(e) {
e.preventDefault();
// Add your login logic here
alert('Login functionality would be implemented here');
hideAuthModal();
});
document.getElementById('registerForm').addEventListener('submit', function(e) {
e.preventDefault();
// Add your registration logic here
alert('Registration functionality would be implemented here');
hideAuthModal();
});
// Close modal when clicking outside
authOverlay.addEventListener('click', function(e) {
if (e.target === authOverlay) {
hideAuthModal();
}
});
</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=LighTDevs/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |