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 Footer With Newsletter Signup</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-end min-h-screen antialiased"> <footer class="w-full bg-white border-t border-slate-100"> <!-- Top Part with Newsletter --> <div class="max-w-7xl mx-auto px-6 py-16 border-b border-slate-50"> <div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> <div class="space-y-4"> <h3 class="text-3xl font-black text-slate-900 tracking-tighter">Stay Synchronized</h3> <p class="text-slate-500 max-w-md leading-relaxed"> Join our monthly manifest digest for deep dives into neutral handshake protocols and distributed logic patterns. </p> </div> <div class="w-full max-w-md lg:ml-auto"> <form class="flex flex-col sm:flex-row gap-3"> <input type="email" placeholder="sector-admin@example.com" class="flex-1 px-6 py-4 bg-slate-50 border border-slate-200 rounded-2xl text-sm focus:outline-none focus:ring-2 focus:ring-indigo-500/20 focus:border-indigo-500 transition-all font-medium"> <button class="px-8 py-4 bg-slate-900 text-white rounded-2xl text-[10px] font-black uppercase tracking-widest hover:bg-indigo-600 transition-all shadow-xl shadow-slate-100 cursor-pointer"> Subscribe </button> </form> <p class="mt-4 text-[10px] text-slate-400 font-bold uppercase tracking-widest leading-tight"> No spam. Just technical manifest updates. </p> </div> </div> </div> <!-- Bottom Part --> <div class="max-w-7xl mx-auto px-6 py-12 flex flex-col md:flex-row justify-between items-center gap-8"> <div class="flex items-center gap-3"> <div class="h-8 w-8 bg-indigo-600 rounded-xl flex items-center justify-center text-white"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M13 10V3L4 14h7v7l9-11h-7z" /></svg> </div> <span class="text-xl font-bold text-slate-900 tracking-tight">Vanguard Sync</span> </div> <div class="flex gap-10"> <a href="#" class="text-xs font-bold text-slate-400 uppercase tracking-[0.2em] hover:text-slate-900 transition-colors">Documentation</a> <a href="#" class="text-xs font-bold text-slate-400 uppercase tracking-[0.2em] hover:text-slate-900 transition-colors">Community</a> <a href="#" class="text-xs font-bold text-slate-400 uppercase tracking-[0.2em] hover:text-slate-900 transition-colors">Infrastructure</a> </div> </div> </footer> </body> </html>