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 Simple Pricing Table</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center min-h-screen pt-16 p-6 antialiased"> <div class="w-full max-w-lg bg-white p-12 rounded-[3.5rem] shadow-4xl border border-white text-center"> <div class="mb-10"> <span class="text-[10px] font-black text-indigo-500 uppercase tracking-widest italic">Sector Access</span> <h2 class="text-3xl font-black text-slate-900 tracking-tighter mt-2">Core Manifest Sync</h2> </div> <div class="mb-12"> <div class="flex items-baseline justify-center gap-1"> <span class="text-sm font-bold text-slate-400">$</span> <span class="text-6xl font-black text-slate-900 tracking-tighter">42</span> <span class="text-xs font-bold text-slate-400 uppercase tracking-widest italic">/ Month</span> </div> <p class="mt-4 text-sm text-slate-500 font-medium italic">Unlimited node distribution across all regional segments.</p> </div> <div class="space-y-4 mb-12"> <div class="flex items-center gap-4 text-left p-4 bg-slate-50 rounded-2xl border border-slate-100"> <div class="h-6 w-6 bg-indigo-600 rounded-lg flex items-center justify-center text-white shrink-0"> <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-xs font-black text-slate-700 uppercase tracking-wide">0ms Neural Latency Handshake</span> </div> <div class="flex items-center gap-4 text-left p-4 bg-slate-50 rounded-2xl border border-slate-100"> <div class="h-6 w-6 bg-indigo-600 rounded-lg flex items-center justify-center text-white shrink-0"> <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-xs font-black text-slate-700 uppercase tracking-wide">Unlimited Spectral Bandwidth</span> </div> <div class="flex items-center gap-4 text-left p-4 bg-slate-50 rounded-2xl border border-slate-100"> <div class="h-6 w-6 bg-indigo-600 rounded-lg flex items-center justify-center text-white shrink-0"> <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-xs font-black text-slate-700 uppercase tracking-wide">24/7 Decentralized Audit Support</span> </div> </div> <button class="w-full py-5 bg-slate-900 text-white rounded-[1.8rem] text-sm font-black uppercase tracking-widest hover:bg-indigo-600 transition-all shadow-xl shadow-slate-200 cursor-pointer italic"> Initialize Protocol Alpha </button> </div> </body> </html>