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 Simple Footer</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 p-8 md:p-12"> <div class="max-w-7xl mx-auto flex flex-col md:flex-row items-center justify-between gap-8"> <div class="flex items-center gap-2"> <div class="h-8 w-8 bg-slate-900 rounded-lg 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" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" /></svg> </div> <span class="text-xl font-bold text-slate-900 tracking-tight">Vanguard</span> </div> <p class="text-sm text-slate-500"> © 2026 Vanguard Logic. All rights reserved. Built for global neural synchronization. </p> <div class="flex gap-8"> <a href="#" class="text-sm font-semibold text-slate-600 hover:text-indigo-600 transition-colors">Privacy</a> <a href="#" class="text-sm font-semibold text-slate-600 hover:text-indigo-600 transition-colors">Terms</a> <a href="#" class="text-sm font-semibold text-slate-600 hover:text-indigo-600 transition-colors">Cookies</a> </div> </div> </footer> </body> </html>