use this html to build the website <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>1-Minute CTA — Smarter in 60 seconds a day</title> <meta name="description" content="Get one actionable business insight in under a minute — delivered every morning." /> <style> :root{–accent:#2563eb;–muted:#6b7280;–bg:#ffffff;–card:#f8fafc;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial} *{box-sizing:border-box} body{margin:0;background:var(–bg);color:#0f172a;font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial} .container{max-width:980px;margin:48px auto;padding:24px} header{display:flex;align-items:center;justify-content:space-between} .brand{display:flex;gap:14px;align-items:center} .logo{width:48px;height:48px;border-radius:10px;background:linear-gradient(135deg,#60a5fa,#06b6d4);display:flex;align-items:center;justify-content:center;color:white;font-weight:700} h1{font-size:28px;margin:0 0 8px} p.lead{margin:0;color:var(–muted)} .hero{display:grid;grid-template-columns:1fr 380px;gap:28px;align-items:center;margin-top:28px} .card{background:var(–card);padding:20px;border-radius:12px;box-shadow:0 6px 20px rgba(2,6,23,0.06)} .cta-btn{display:inline-block;background:var(–accent);color:#fff;padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:600} .small{font-size:13px;color:var(–muted)} .features{display:flex;gap:12px;margin-top:22px} .feature{flex:1;padding:16px;background:#fff;border-radius:10px;border:1px solid #eef2ff} .example{margin-top:18px} .example h3{margin:0 0 8px} .takeaway{margin-top:10px;padding:12px;border-radius:8px;background:#fffef8;border:1px solid #fff1cc} footer{margin-top:48px;padding-top:20px;border-top:1px solid #eef2ff;color:var(–muted);display:flex;justify-content:space-between} @media(max-width:900px){.hero{grid-template-columns:1fr}.container{margin:28px 16px}} .badge{background:#eef2ff;color:var(–accent);padding:6px 10px;border-radius:999px;font-weight:600;font-size:12px} .input{width:100%;padding:12px;border-radius:10px;border:1px solid #e6edf8;margin-bottom:8px} .social{display:flex;gap:10px} .muted-link{color:var(–muted);text-decoration:none} </style> </head> <body> <div class="container"> <header> <div class="brand"> <div class="logo">1M</div> <div> <strong>1-Minute CTA</strong> <div class="small">Smarter in 60 seconds a day</div> </div> </div> <nav class="small"> <a class="muted-link" href="#archive">Archive</a> · <a class="muted-link" href="#about">About</a> · <a class="muted-link" href="#sponsor">Sponsor</a> </nav> </header> <main class="hero"> <section> <h1>Get 1 actionable business insight in 60 seconds every morning.</h1> <p class="lead">Join thousands of founders, creators, and curious learners who sharpen their thinking before coffee. Practical. Short. Daily.</p> <div style="margin-top:18px"> <a class="cta-btn" href="#subscribe">👉 Send me today’s 1-minute CTA</a> </div> <div class="features"> <div class="feature"> <div style="font-weight:700">⚡ Bite-sized</div> <div class="small">One short insight you can read in under a minute.</div> </div> <div class="feature"> <div style="font-weight:700">🤖 AI + Curation</div> <div class="small">AI surfaces ideas, curated by a human editorial touch.</div> </div> <div class="feature"> <div style="font-weight:700">🚀 Actionable</div> <div class="small">Each insight ends with a single practical takeaway.</div> </div> </div> <div class="card example"> <h3>🚀 Today’s 1-Minute CTA</h3> <p style="margin:0">Why great founders obsess over distribution. Building a product is only half the battle — distribution wins wars. If your growth engine depends on luck or virality, you don’t have a business, you have a lottery ticket.</p> <div class="takeaway">💡 <strong>Takeaway:</strong> Design distribution into your product from day one — not as an afterthought.</div> <div style="margin-top:12px"><a class="muted-link" href="#archive">See past insights</a></div> </div> </section> <aside> <div class="card"> <div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:8px"> <div> <div style="font-weight:700">Get today’s insight</div> <div class="small">Delivered to your inbox each morning</div> </div> <div class="badge">Free</div> </div> <!– Replace the form below with your Beehiiv/Substack embed code or Mailchimp form –> <form id="subscribe" action="#" onsubmit="alert('Replace this with your email provider embed/submit action');return false;"> <input class="input" type="email" name="email" placeholder="Your email address" required /> <button class="cta-btn" type="submit">Subscribe — it’s free</button> <div class="small" style="margin-top:8px">By subscribing you agree to receive emails. Unsubscribe anytime.</div> </form> </div> <div style="margin-top:14px;text-align:center" class="small">Follow</div> <div style="margin-top:8px;text-align:center" class="social"> <a class="muted-link" href="#">X</a> <a class="muted-link" href="#">LinkedIn</a> <a class="muted-link" href="#">Threads</a> </div> </aside> </main> <footer> <div>© 2025 1-Minute CTA</div> <div class="small">Archive • About • Sponsor • <a class="muted-link" href="mailto:hello@1minutecta.com">Contact</a></div> </footer> </div> <script> // Small client-side enhancement: sample subscriber counter (static placeholder) (function(){ const seed = 924; const el = document.createElement('div'); el.className='small'; el.style.marginTop='12px'; el.textContent = seed.toLocaleString() + ' subscribers — join them'; document.querySelector('aside .card').appendChild(el); })(); </script> </body> </html>