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 Card With Action 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-6 antialiased"> <div class="w-full max-w-sm bg-white rounded-[2.5rem] shadow-3xl p-10 border border-white"> <div class="mb-8"> <h3 class="text-2xl font-black text-slate-900 tracking-tighter mb-3 italic">Actionable Intel.</h3> <p class="text-slate-400 font-bold text-sm leading-relaxed italic">Interactive command center for localized node management and protocol overrides.</p> </div> <div class="flex flex-col gap-3"> <button class="w-full h-14 bg-slate-900 text-white rounded-2xl font-black text-xs uppercase tracking-widest shadow-xl hover:bg-indigo-600 transition active:scale-95 cursor-pointer">Execute Protocol</button> <button class="w-full h-14 bg-slate-50 text-slate-400 rounded-2xl font-black text-xs uppercase tracking-widest hover:text-rose-600 hover:bg-rose-50 transition active:scale-95 cursor-pointer">Decommission</button> </div> </div> </body> </html>