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 Status Badge</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="flex flex-col gap-6 w-full max-w-xs"> <div class="flex items-center justify-between p-4 bg-white rounded-3xl border border-slate-100 shadow-sm"> <span class="text-sm font-bold text-slate-700 italic">Neural Sync</span> <span class="inline-flex items-center px-3 py-1 bg-emerald-100 text-emerald-700 text-[9px] font-black uppercase tracking-widest rounded-full border border-emerald-200"> Stable </span> </div> <div class="flex items-center justify-between p-4 bg-white rounded-3xl border border-slate-100 shadow-sm"> <span class="text-sm font-bold text-slate-700 italic">Mesh Handshake</span> <span class="inline-flex items-center px-3 py-1 bg-amber-100 text-amber-700 text-[9px] font-black uppercase tracking-widest rounded-full border border-amber-200"> Pending </span> </div> <div class="flex items-center justify-between p-4 bg-white rounded-3xl border border-slate-100 shadow-sm"> <span class="text-sm font-bold text-slate-700 italic">Data Encryption</span> <span class="inline-flex items-center px-3 py-1 bg-rose-100 text-rose-700 text-[9px] font-black uppercase tracking-widest rounded-full border border-rose-200"> Offline </span> </div> </div> </body> </html>