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 Dot Indicator 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-wrap gap-8"> <span class="inline-flex items-center gap-2.5 px-3 py-1 bg-white text-slate-600 text-xs font-medium rounded-full border border-slate-100 shadow-sm italic"> <span class="h-2 w-2 bg-emerald-500 rounded-full animate-pulse"></span> System Online </span> <span class="inline-flex items-center gap-2.5 px-3 py-1 bg-white text-slate-600 text-xs font-medium rounded-full border border-slate-100 shadow-sm italic"> <span class="h-2 w-2 bg-rose-500 rounded-full animate-ping"></span> Primary Hub Alert </span> <span class="inline-flex items-center gap-2.5 px-3 py-1 bg-white text-slate-600 text-xs font-medium rounded-full border border-slate-100 shadow-sm italic"> <span class="h-2 w-2 bg-amber-500 rounded-full"></span> Sync Standby </span> </div> </body> </html>