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 Glassmorphism Card</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-indigo-600 flex items-center justify-center min-h-screen p-6 antialiased relative overflow-hidden"> <!-- Dynamic Background elements --> <div class="absolute top-1/4 left-1/4 h-96 w-96 bg-rose-400 rounded-full blur-[120px] opacity-40"></div> <div class="absolute bottom-1/4 right-1/4 h-96 w-96 bg-blue-400 rounded-full blur-[120px] opacity-40"></div> <div class="w-full max-w-sm bg-white/10 backdrop-blur-2xl rounded-[3.5rem] p-12 shadow-[0_50px_100px_-20px_rgba(0,0,0,0.3)] border border-white/20 relative"> <div class="h-16 w-16 bg-white/10 rounded-[1.5rem] flex items-center justify-center text-white mb-10 border border-white/10"> <svg class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z"/></script> </div> <h3 class="text-3xl font-black text-white tracking-tighter mb-4 italic">Refractive Node.</h3> <p class="text-indigo-100/60 font-bold leading-relaxed italic mb-10">Crystal clarity for high-end aesthetic interfaces. Optimized for complex background interaction.</p> <button class="px-8 py-3 bg-white text-indigo-900 rounded-2xl font-black text-[10px] uppercase tracking-widest hover:scale-105 transition active:scale-95 cursor-pointer">Request Access</button> </div> </body> </html>