<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Marketers Club - Build a Faceless AI Business</title>
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
color: white;
overflow-x: hidden;
}
.web-story-container {
max-width: 400px;
margin: 0 auto;
height: 100vh;
position: relative;
overflow: hidden;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
/* Web Story Pages */
.page {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
flex-direction: column;
padding: 20px;
background-size: cover;
background-position: center;
transition: transform 0.5s ease;
}
.page.active {
display: flex;
}
/* Progress Bar */
.progress-container {
width: 100%;
height: 5px;
background-color: rgba(255, 255, 255, 0.3);
margin-bottom: 20px;
border-radius: 5px;
overflow: hidden;
}
.progress-bar {
height: 100%;
background-color: #fdbb2d;
width: 0%;
transition: width 0.3s ease;
}
/* Content Styling */
.content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
h2 {
font-size: 2rem;
margin-bottom: 15px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 20px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.highlight {
color: #fdbb2d;
font-weight: bold;
}
/* Button Styling */
.btn {
display: inline-block;
background: linear-gradient(to right, #fdbb2d, #b21f1f);
color: white;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
margin: 10px 0;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
/* Navigation */
.nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.3);
color: white;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 1.5rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
transition: background-color 0.3s;
}
.nav-btn:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.prev-btn {
left: 10px;
}
.next-btn {
right: 10px;
}
/* Page-specific styling */
.title-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
justify-content: center;
align-items: center;
}
.problem-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1589652717521-10c0d092dea9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.solution-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.what-is-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.fir-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.bonuses-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.proof-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.how-it-works-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.cta-page {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
justify-content: center;
align-items: center;
}
/* Bonus List */
.bonus-list {
text-align: left;
max-height: 60vh;
overflow-y: auto;
padding-right: 10px;
}
.bonus-list li {
margin-bottom: 15px;
padding-left: 10px;
}
/* Footer */
.footer {
text-align: center;
padding: 10px;
font-size: 0.8rem;
opacity: 0.8;
}
/* Responsive adjustments */
@media (max-height: 700px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.7rem;
}
p {
font-size: 1rem;
}
.btn {
padding: 12px 25px;
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="web-story-container">
<!-- Progress Bar -->
<div class="progress-container">
<div class="progress-bar" id="progressBar"></div>
</div>
<!-- Page 1: Title Page -->
<div class="page title-page active" id="page1">
<div class="content">
<h1>BREAK FREE FROM THE 9-5 GRIND</h1>
<p>Discover How To Build A Faceless AI Marketing Business In 2025</p>
<a href="https://shorturl.at/Z31x8" class="btn">Start Your Journey</a>
</div>
<div class="footer">Swipe or use arrows to continue</div>
</div>
<!-- Page 2: The Problem -->
<div class="page problem-page" id="page2">
<div class="content">
<h2>Do You Feel Trapped?</h2>
<p>Trading your precious time for a paycheck that never seems to be enough?</p>
<p>That Sunday evening dread as another workweek approaches...</p>
<p>Dreaming of freedom but unsure how to achieve it?</p>
<p class="highlight">You're not alone. Millions feel these golden handcuffs.</p>
</div>
</div>
<!-- Page 3: The Solution -->
<div class="page solution-page" id="page3">
<div class="content">
<h2>The Silent Revolution Is Here</h2>
<p>Faceless AI creators are quietly building empires using artificial intelligence to create, post, and monetize content.</p>
<p>No camera needed. No sales experience required. No technical skills necessary.</p>
<p class="highlight">Just a proven system that works while you live your life.</p>
<a href="https://shorturl.at/Z31x8" class="btn">Learn The System</a>
</div>
</div>
<!-- Page 4: What is AI Marketers Club -->
<div class="page what-is-page" id="page4">
<div class="content">
<h2>What Is The AI Marketers Club?</h2>
<p>A step-by-step system created by super-affiliate <span class="highlight">John Crestani</span> that teaches you how to use AI for marketing products online.</p>
<p>Perfect for absolute beginners who want to build a digital asset that generates income while they sleep.</p>
<p class="highlight">No face, no family selling, no complex tech - just results.</p>
<a href="https://shorturl.at/Z31x8" class="btn">See How It Works</a>
</div>
</div>
<!-- Page 5: The F.I.R. Formula -->
<div class="page fir-page" id="page5">
<div class="content">
<h2>The Secret Sauce: F.I.R. Formula</h2>
<p>The magic behind the system is the <span class="highlight">F.I.R. prompting framework</span>:</p>
<p><strong>FACTS:</strong> Provide AI with core data about products and audience</p>
<p><strong>INSTRUCTIONS:</strong> Give clear, step-by-step tasks to the AI</p>
<p><strong>RULES:</strong> Set guardrails for tone, style, and structure</p>
<p class="highlight">This creates consistent, high-converting content in minutes, not hours.</p>
</div>
</div>
<!-- Page 6: Bonuses -->
<div class="page bonuses-page" id="page6">
<div class="content">
<h2>Your $27 Treasure Chest</h2>
<p>For a minimal investment, you get incredible value:</p>
<div class="bonus-list">
<ul>
<li>3-Hour Video Course by John Crestani</li>
<li>Exclusive Affiliate Network Access</li>
<li>Quickstart Guide & 7-Minute Action Checklist</li>
<li>AI Marketers Commissions Tracker</li>
<li>Private Community Access</li>
<li>The Memetic AI Tool</li>
<li>FREE Website with Domain</li>
</ul>
</div>
<a href="https://shorturl.at/Z31x8" class="btn">Claim All Bonuses</a>
</div>
</div>
<!-- Page 7: Social Proof -->
<div class="page proof-page" id="page7">
<div class="content">
<h2>Real Stories, Real Results</h2>
<p><span class="highlight">Johnny Kim</span> - Former corporate IT employee who changed his life trajectory using these AI strategies.</p>
<p><span class="highlight">Ronnie Sandlin</span> - Creates winning ads for law firms and built a lucrative business.</p>
<p>As featured in <span class="highlight">Business Insider, NY Post, and Euro News</span> - AI creators are making $60,000/month!</p>
<a href="https://shorturl.at/Z31x8" class="btn">Read Their Stories</a>
</div>
</div>
<!-- Page 8: How It Works -->
<div class="page how-it-works-page" id="page8">
<div class="content">
<h2>How It Works</h2>
<p>1. Complete the 3-hour training</p>
<p>2. Use the F.I.R. Formula to create content</p>
<p>3. Post your affiliate content (7 minutes/day)</p>
<p>4. Track results and optimize</p>
<p>5. Build your digital asset over time</p>
<p class="highlight">No 12-hour days. Just consistent, focused action.</p>
<a href="https://shorturl.at/Z31x8" class="btn">Start Today</a>
</div>
</div>
<!-- Page 9: CTA -->
<div class="page cta-page" id="page9">
<div class="content">
<h2>Your Future Starts Now</h2>
<p>The 9-5 grind is a choice. Financial freedom is also a choice.</p>
<p>For just $27 with a <span class="highlight">60-day money-back guarantee</span>, you have nothing to lose and everything to gain.</p>
<p>Stop consuming content and start building your legacy.</p>
<a href="https://shorturl.at/Z31x8" class="btn">Join AI Marketers Club Now</a>
<p class="footer">Limited Time Offer - Early Bird Pricing</p>
</div>
</div>
<!-- Navigation Buttons -->
<button class="nav-btn prev-btn" id="prevBtn">‹</button>
<button class="nav-btn next-btn" id="nextBtn">›</button>
</div>
<script>
// Web Story Functionality
document.addEventListener('DOMContentLoaded', function() {
const pages = document.querySelectorAll('.page');
const prevBtn = document.getElementById('prevBtn');
const nextBtn = document.getElementById('nextBtn');
const progressBar = document.getElementById('progressBar');
let currentPage = 0;
const totalPages = pages.length;
// Initialize progress bar
updateProgressBar();
// Show the first page
showPage(currentPage);
// Next button functionality
nextBtn.addEventListener('click', function() {
if (currentPage < totalPages - 1) {
currentPage++;
showPage(currentPage);
updateProgressBar();
}
});
// Previous button functionality
prevBtn.addEventListener('click', function() {
if (currentPage > 0) {
currentPage--;
showPage(currentPage);
updateProgressBar();
}
});
// Swipe functionality for mobile
let touchStartX = 0;
let touchEndX = 0;
document.addEventListener('touchstart', function(e) {
touchStartX = e.changedTouches[0].screenX;
});
document.addEventListener('touchend', function(e) {
touchEndX = e.changedTouches[0].screenX;
handleSwipe();
});
function handleSwipe() {
const swipeThreshold = 50;
if (touchEndX < touchStartX - swipeThreshold) {
// Swipe left - next page
if (currentPage < totalPages - 1) {
currentPage++;
showPage(currentPage);
updateProgressBar();
}
}
if (touchEndX > touchStartX + swipeThreshold) {
// Swipe right - previous page
if (currentPage > 0) {
currentPage--;
showPage(currentPage);
updateProgressBar();
}
}
}
// Keyboard navigation
document.addEventListener('keydown', function(e) {
if (e.key === 'ArrowRight' || e.key === ' ') {
// Next page
if (currentPage < totalPages - 1) {
currentPage++;
showPage(currentPage);
updateProgressBar();
}
} else if (e.key === 'ArrowLeft') {
// Previous page
if (currentPage > 0) {
currentPage--;
showPage(currentPage);
updateProgressBar();
}
}
});
// Function to show a specific page
function showPage(pageIndex) {
// Hide all pages
pages.forEach(page => {
page.classList.remove('active');
});
// Show the current page
pages[pageIndex].classList.add('active');
// Update navigation buttons visibility
prevBtn.style.display = (pageIndex === 0) ? 'none' : 'flex';
nextBtn.style.display = (pageIndex === totalPages - 1) ? 'none' : 'flex';
}
// Function to update progress bar
function updateProgressBar() {
const progress = ((currentPage + 1) / totalPages) * 100;
progressBar.style.width = `${progress}%`;
}
// Auto-advance (optional - uncomment if needed)
/*
setInterval(function() {
if (currentPage < totalPages - 1) {
currentPage++;
showPage(currentPage);
updateProgressBar();
}
}, 8000); // Advance every 8 seconds
*/
});
</script>
</body>
</html>