File size: 48,335 Bytes
f4cde92 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Monetization Guide | Earn Money Online</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, #667eea 0%, #764ba2 100%);
}
.monetization-card:hover {
transform: translateY(-5px);
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);
}
</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-coins text-yellow-500 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">WebProfit</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#strategies" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Strategies</a>
<a href="#features" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#testimonials" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Success Stories</a>
<a href="#pricing" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Courses</a>
<a href="#contact" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center md:hidden">
<button id="mobile-menu-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">
<i class="fas fa-bars"></i>
</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">
<a href="#strategies" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Strategies</a>
<a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Features</a>
<a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Success Stories</a>
<a href="#pricing" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Courses</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
Turn Your Website Into a Money Machine
</h1>
<p class="mt-6 max-w-lg mx-auto text-xl">
Discover proven strategies to monetize your website and start earning passive income today.
</p>
<div class="mt-10">
<a href="#strategies" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-indigo-700 bg-white hover:bg-gray-100">
Explore Strategies
<i class="fas fa-arrow-down ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Monetization Strategies -->
<div id="strategies" 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">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Website Monetization Strategies
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
Choose the right approach for your website and audience
</p>
</div>
<div class="mt-16 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Strategy 1 -->
<div class="monetization-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-500 rounded-md p-3">
<i class="fas fa-ad text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Advertising</h3>
</div>
</div>
<div class="mt-4">
<p class="text-gray-500">
Display ads (Google AdSense, Mediavine), native ads, sponsored content, and direct ad sales.
</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
Best for: High-traffic sites
</span>
</div>
</div>
</div>
</div>
<!-- Strategy 2 -->
<div class="monetization-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-500 rounded-md p-3">
<i class="fas fa-shopping-cart text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Affiliate Marketing</h3>
</div>
</div>
<div class="mt-4">
<p class="text-gray-500">
Earn commissions by promoting products from Amazon, ShareASale, CJ Affiliate, and others.
</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-green-100 text-green-800">
Best for: Niche sites
</span>
</div>
</div>
</div>
</div>
<!-- Strategy 3 -->
<div class="monetization-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-yellow-500 rounded-md p-3">
<i class="fas fa-gem text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Digital Products</h3>
</div>
</div>
<div class="mt-4">
<p class="text-gray-500">
Sell ebooks, courses, templates, software, or memberships with high profit margins.
</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-yellow-100 text-yellow-800">
Best for: Expert creators
</span>
</div>
</div>
</div>
</div>
<!-- Strategy 4 -->
<div class="monetization-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-red-500 rounded-md p-3">
<i class="fas fa-users text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Membership Sites</h3>
</div>
</div>
<div class="mt-4">
<p class="text-gray-500">
Recurring revenue by offering premium content, community access, or exclusive features.
</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-red-100 text-red-800">
Best for: Loyal audiences
</span>
</div>
</div>
</div>
</div>
<!-- Strategy 5 -->
<div class="monetization-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-purple-500 rounded-md p-3">
<i class="fas fa-handshake text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Freemium Services</h3>
</div>
</div>
<div class="mt-4">
<p class="text-gray-500">
Offer free basic services with premium upgrades for advanced features.
</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-purple-100 text-purple-800">
Best for: SaaS products
</span>
</div>
</div>
</div>
</div>
<!-- Strategy 6 -->
<div class="monetization-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-500 rounded-md p-3">
<i class="fas fa-chart-line text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Consulting Services</h3>
</div>
</div>
<div class="mt-4">
<p class="text-gray-500">
Leverage your expertise to offer paid consulting, coaching, or implementation services.
</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-100 text-blue-800">
Best for: Professionals
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div id="features" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Our Monetization Framework
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
A proven system to maximize your website earnings
</p>
</div>
<div class="mt-20">
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
<!-- Feature 1 -->
<div class="feature-card relative">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-500 rounded-md p-3 feature-icon">
<i class="fas fa-search-dollar text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Niche Profitability Analysis</h3>
<p class="mt-2 text-gray-500">
We help you identify the most lucrative niches with the right balance of competition and monetization potential.
</p>
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="feature-card relative">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-500 rounded-md p-3 feature-icon">
<i class="fas fa-tachometer-alt text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Traffic Growth Strategies</h3>
<p class="mt-2 text-gray-500">
Proven SEO, content marketing, and social media tactics to drive targeted visitors to your site.
</p>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="feature-card relative">
<div class="flex items-center">
<div class="flex-shrink-0 bg-yellow-500 rounded-md p-3 feature-icon">
<i class="fas fa-money-bill-wave text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Revenue Optimization</h3>
<p class="mt-2 text-gray-500">
Advanced techniques to increase conversion rates and maximize earnings from each visitor.
</p>
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="feature-card relative">
<div class="flex items-center">
<div class="flex-shrink-0 bg-red-500 rounded-md p-3 feature-icon">
<i class="fas fa-chart-pie text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Diversified Income Streams</h3>
<p class="mt-2 text-gray-500">
Build multiple revenue sources to protect against algorithm changes and market shifts.
</p>
</div>
</div>
</div>
<!-- Feature 5 -->
<div class="feature-card relative">
<div class="flex items-center">
<div class="flex-shrink-0 bg-purple-500 rounded-md p-3 feature-icon">
<i class="fas fa-tools text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Technical Setup</h3>
<p class="mt-2 text-gray-500">
Step-by-step guidance on implementing monetization tools without slowing your site.
</p>
</div>
</div>
</div>
<!-- Feature 6 -->
<div class="feature-card relative">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-500 rounded-md p-3 feature-icon">
<i class="fas fa-analytics text-white text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Performance Tracking</h3>
<p class="mt-2 text-gray-500">
Key metrics to monitor and optimization strategies based on real data.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Success Stories -->
<div id="testimonials" class="gradient-bg py-16 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold sm:text-4xl">
Real Success Stories
</h2>
<p class="mt-4 max-w-2xl text-xl mx-auto">
See how others transformed their websites into income streams
</p>
</div>
<div class="mt-16 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Testimonial 1 -->
<div class="bg-white bg-opacity-10 rounded-lg p-6 backdrop-filter backdrop-blur-sm">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J.">
<div class="ml-4">
<h3 class="text-lg font-medium">Sarah J.</h3>
<p class="text-indigo-200">Food Blogger</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-100">
"Using the affiliate strategies from WebProfit, I grew my food blog income from $200/month to over $5,000/month in just 9 months!"
</p>
</div>
<div class="mt-4 flex items-center">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white bg-opacity-10 rounded-lg p-6 backdrop-filter backdrop-blur-sm">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T.">
<div class="ml-4">
<h3 class="text-lg font-medium">Michael T.</h3>
<p class="text-indigo-200">Tech Reviewer</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-100">
"The advertising optimization techniques doubled my RPM. Now earning $12,000/month from my tech review site with the same traffic!"
</p>
</div>
<div class="mt-4 flex items-center">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white bg-opacity-10 rounded-lg p-6 backdrop-filter backdrop-blur-sm">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa M.">
<div class="ml-4">
<h3 class="text-lg font-medium">Lisa M.</h3>
<p class="text-indigo-200">Fitness Coach</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-100">
"Launched my online training program using WebProfit's framework. Made $27,000 in the first month with just 5,000 email subscribers!"
</p>
</div>
<div class="mt-4 flex items-center">
<i class="fas fa-star text-yellow-300"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star text-yellow-300 ml-1"></i>
<i class="fas fa-star-half-alt text-yellow-300 ml-1"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Pricing/Courses -->
<div id="pricing" 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">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Monetization Courses
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
Choose the learning path that fits your goals
</p>
</div>
<div class="mt-16 space-y-8 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-x-8">
<!-- Basic Course -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200">
<div class="p-6">
<h3 class="text-lg font-medium text-gray-900">Starter Pack</h3>
<p class="mt-4 text-sm text-gray-500">
Perfect for beginners looking to monetize their first website
</p>
<div class="mt-8">
<p class="text-4xl font-extrabold text-gray-900">$97</p>
<p class="mt-2 text-sm text-gray-500">One-time payment</p>
</div>
<a href="#" class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-3 text-sm font-semibold text-white text-center hover:bg-gray-900">
Get Started
</a>
</div>
<div class="pt-6 pb-8 px-6">
<h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h4>
<ul class="mt-6 space-y-4">
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Advertising Fundamentals</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Affiliate Marketing Basics</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">5 Website Templates</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Email List Building</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Community Access</span>
</li>
</ul>
</div>
</div>
<!-- Pro Course -->
<div class="bg-white border-2 border-indigo-600 rounded-lg shadow-sm divide-y divide-gray-200 transform scale-105 z-10">
<div class="p-6">
<div class="flex justify-between">
<h3 class="text-lg font-medium text-gray-900">Pro Monetization</h3>
<span class="inline-flex items-center px-3 py-1 rounded-full text-xs font-medium bg-indigo-100 text-indigo-800">
Most Popular
</span>
</div>
<p class="mt-4 text-sm text-gray-500">
Comprehensive training for serious website owners
</p>
<div class="mt-8">
<p class="text-4xl font-extrabold text-gray-900">$297</p>
<p class="mt-2 text-sm text-gray-500">One-time payment</p>
</div>
<a href="#" class="mt-8 block w-full bg-indigo-600 border border-indigo-600 rounded-md py-3 text-sm font-semibold text-white text-center hover:bg-indigo-700">
Get Started
</a>
</div>
<div class="pt-6 pb-8 px-6">
<h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h4>
<ul class="mt-6 space-y-4">
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">All Starter Pack features</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Advanced Ad Optimization</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">High-Ticket Affiliate Strategies</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Digital Product Creation</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Membership Site Setup</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">1-on-1 Coaching Call</span>
</li>
</ul>
</div>
</div>
<!-- Mastermind -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200">
<div class="p-6">
<h3 class="text-lg font-medium text-gray-900">Mastermind</h3>
<p class="mt-4 text-sm text-gray-500">
For entrepreneurs building 6-figure online businesses
</p>
<div class="mt-8">
<p class="text-4xl font-extrabold text-gray-900">$997</p>
<p class="mt-2 text-sm text-gray-500">One-time payment</p>
</div>
<a href="#" class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-3 text-sm font-semibold text-white text-center hover:bg-gray-900">
Get Started
</a>
</div>
<div class="pt-6 pb-8 px-6">
<h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h4>
<ul class="mt-6 space-y-4">
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">All Pro features</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Private Mastermind Group</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Monthly Strategy Calls</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Website Audit</span>
</li>
<li class="flex">
<i class="fas fa-check text-green-500 mt-0.5"></i>
<span class="ml-3 text-sm text-gray-500">Premium Tools Access</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ Section -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Frequently Asked Questions
</h2>
</div>
<div class="mt-12">
<dl class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-12">
<!-- FAQ 1 -->
<div>
<dt class="text-lg leading-6 font-medium text-gray-900">
How soon can I start making money?
</dt>
<dd class="mt-2 text-gray-500">
Most students see their first earnings within 30-60 days of implementing the strategies. However, significant income typically takes 3-6 months of consistent effort.
</dd>
</div>
<!-- FAQ 2 -->
<div>
<dt class="text-lg leading-6 font-medium text-gray-900">
Do I need technical skills?
</dt>
<dd class="mt-2 text-gray-500">
No technical skills are required. We provide step-by-step tutorials for all technical aspects, and many tools we recommend are beginner-friendly.
</dd>
</div>
<!-- FAQ 3 -->
<div>
<dt class="text-lg leading-6 font-medium text-gray-900">
How much traffic do I need?
</dt>
<dd class="mt-2 text-gray-500">
It depends on the monetization method. Some strategies work with as little as 1,000 monthly visitors, while others require 10,000+ for optimal results.
</dd>
</div>
<!-- FAQ 4 -->
<div>
<dt class="text-lg leading-6 font-medium text-gray-900">
Is there a money-back guarantee?
</dt>
<dd class="mt-2 text-gray-500">
Yes! We offer a 30-day money-back guarantee if you implement the strategies and don't see results.
</dd>
</div>
<!-- FAQ 5 -->
<div>
<dt class="text-lg leading-6 font-medium text-gray-900">
Can I use these strategies with an existing site?
</dt>
<dd class="mt-2 text-gray-500">
Absolutely! Our framework works for both new and established websites. We'll show you how to optimize what you already have.
</dd>
</div>
<!-- FAQ 6 -->
<div>
<dt class="text-lg leading-6 font-medium text-gray-900">
How much time does this require?
</dt>
<dd class="mt-2 text-gray-500">
Most students spend 5-10 hours per week implementing the strategies. The more time you invest, the faster you'll see results.
</dd>
</div>
</dl>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="gradient-bg">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
<span class="block">Ready to monetize your website?</span>
<span class="block text-indigo-200">Start earning today.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
<div class="inline-flex rounded-md shadow">
<a href="#pricing" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50">
View Courses
</a>
</div>
<div class="ml-3 inline-flex rounded-md shadow">
<a href="#contact" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70">
Contact Us
</a>
</div>
</div>
</div>
</div>
<!-- Contact Form -->
<div id="contact" class="bg-white py-16 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Have Questions?
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
We're here to help you succeed
</p>
</div>
<div class="mt-12">
<div class="bg-white shadow-xl rounded-lg overflow-hidden">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="p-8">
<h3 class="text-lg font-medium text-gray-900">Send us a message</h3>
<form class="mt-6 space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Name</label>
<div class="mt-1">
<input type="text" name="name" id="name" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md">
</div>
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<div class="mt-1">
<input type="email" name="email" id="email" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md">
</div>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700">Message</label>
<div class="mt-1">
<textarea id="message" name="message" rows="4" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md"></textarea>
</div>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Send Message
</button>
</div>
</form>
</div>
<div class="bg-indigo-700 p-8 text-white">
<h3 class="text-lg font-medium">Contact Information</h3>
<div class="mt-6 space-y-4">
<div class="flex">
<i class="fas fa-map-marker-alt mt-1"></i>
<span class="ml-3">123 Web Street, Digital City, 10001</span>
</div>
<div class="flex">
<i class="fas fa-phone-alt mt-1"></i>
<span class="ml-3">+1 (555) 123-4567</span>
</div>
<div class="flex">
<i class="fas fa-envelope mt-1"></i>
<span class="ml-3">support@webprofit.com</span>
</div>
</div>
<div class="mt-8">
<h3 class="text-lg font-medium">Follow Us</h3>
<div class="flex space-x-6 mt-4">
<a href="#" class="text-indigo-200 hover:text-white">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="#" class="text-indigo-200 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-indigo-200 hover:text-white">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-indigo-200 hover:text-white">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="text-indigo-200 hover:text-white">
<i class="fab fa-youtube text-xl"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Solutions</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Advertising</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Affiliate Marketing</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Digital Products</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Memberships</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Guides</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Webinars</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Tools</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">About</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Press</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Cookie Policy</a></li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-base text-gray-400">
© 2023 WebProfit. All rights reserved.
</p>
<div class="mt-4 md:mt-0">
<p class="text-base text-gray-400">
Making the web profitable for everyone.
</p>
</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');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
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');
}
}
});
});
// Form submission (example)
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
}
</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=Mpura/webprof" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |