Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Hero With CTA Buttons</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-center justify-center min-h-screen p-8"> <section class="max-w-7xl mx-auto w-full text-center"> <div class="mb-10 text-xs font-black text-rose-600 uppercase tracking-[0.4em] leading-relaxed drop-shadow-sm">The Next Generation.</div> <h1 class="text-6xl md:text-9xl font-black text-slate-900 leading-none mb-10 tracking-tighter">Your Future <span class="text-transparent bg-clip-text bg-gradient-to-r from-rose-600 to-amber-500 italic">Optimized.</span></h1> <p class="text-xl md:text-2xl text-slate-500 max-w-3xl mx-auto mb-16 leading-relaxed font-bold underline decoration-slate-100 decoration-8 underline-offset-10">Stop waiting for success. Build the foundation of your digital platform with high-performance utility CSS.</p> <div class="flex items-center justify-center flex-wrap gap-8"> <!-- Primary Action --> <a href="##" class="group relative px-14 py-6 bg-slate-900 text-white rounded-[2.5rem] font-black text-sm uppercase tracking-widest shadow-2xl hover:bg-rose-600 transition-all active:scale-95"> <span class="relative z-10 flex items-center gap-2">Get Started Now <svg class="h-4 w-4 transition-transform group-hover:translate-x-1" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M17 8l4 4m0 0l-4 4m4-4H3" /></svg></span> </a> <!-- Secondary Action --> <a href="##" class="text-sm font-black text-slate-400 uppercase tracking-widest hover:text-slate-900 underline decoration-slate-200 decoration-2 underline-offset-8 transition-colors">Compare All Plans</a> </div> </section> </body> </html>