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 Success Alert</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-md bg-emerald-50 border border-emerald-100 rounded-3xl p-6 flex gap-5 shadow-sm"> <div class="h-10 w-10 bg-emerald-500 rounded-2xl flex items-center justify-center text-white shrink-0 shadow-lg shadow-emerald-200"> <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M5 13l4 4L19 7" /></svg> </div> <div class="pt-1"> <h3 class="text-sm font-bold text-emerald-900 leading-none">Authorization Granted</h3> <p class="text-sm text-emerald-700/80 mt-2 leading-relaxed">The global manifest has been successfully distributed to all 12 edge clusters.</p> </div> </div> </body> </html>