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 Pricing Comparison 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-6xl"> <div class="text-center mb-16 space-y-4"> <span class="text-[11px] font-black text-indigo-500 uppercase tracking-widest italic">Protocol Analysis</span> <h2 class="text-4xl font-black text-slate-900 tracking-tighter italic leading-tight">Compare Mesh Sovereignty.</h2> </div> <div class="bg-white rounded-[3.5rem] shadow-4xl border border-white overflow-hidden"> <table class="w-full text-left border-collapse"> <thead> <tr class="bg-slate-50/50"> <th class="p-10 w-1/4"> <span class="text-[10px] font-black text-slate-400 uppercase tracking-widest italic">Protocol Feature</span> </th> <th class="p-10 text-center border-l border-slate-100"> <h4 class="text-sm font-black text-slate-900 tracking-tight italic">Observer</h4> </th> <th class="p-10 text-center bg-indigo-600/5 border-l border-slate-100 relative"> <div class="absolute top-0 inset-x-0 h-1 bg-indigo-600"></div> <h4 class="text-sm font-black text-indigo-600 tracking-tight italic">Architect</h4> </th> <th class="p-10 text-center border-l border-slate-100"> <h4 class="text-sm font-black text-slate-900 tracking-tight italic">Elite</h4> </th> </tr> </thead> <tbody class="divide-y divide-slate-50"> <!-- Row 1 --> <tr class="group hover:bg-slate-50/30 transition-colors"> <td class="px-10 py-6"> <div class="flex flex-col gap-1"> <span class="text-xs font-black text-slate-800 tracking-tight uppercase">Neural Sync Speed</span> <span class="text-[9px] font-bold text-slate-400 italic">Core manifest broadcast latency</span> </div> </td> <td class="p-6 text-center text-xs font-bold text-slate-500">Standard</td> <td class="p-6 text-center text-xs font-black text-indigo-600 bg-indigo-600/5">Instant Handshake</td> <td class="p-6 text-center text-xs font-bold text-slate-500">Instant Handshake</td> </tr> <!-- Row 2 --> <tr class="group hover:bg-slate-50/30 transition-colors"> <td class="px-10 py-6"> <div class="flex flex-col gap-1"> <span class="text-xs font-black text-slate-800 tracking-tight uppercase">Spectral Bandwidth</span> <span class="text-[9px] font-bold text-slate-400 italic">Total data throughput allowance</span> </div> </td> <td class="p-6 text-center text-xs font-bold text-slate-500 italic">100 GB</td> <td class="p-6 text-center text-xs font-black text-indigo-600 bg-indigo-600/5 italic">1 TB</td> <td class="p-6 text-center text-xs font-bold text-slate-900 italic uppercase tracking-widest underline decoration-indigo-200">Unlimited</td> </tr> <!-- Row 3 --> <tr class="group hover:bg-slate-50/30 transition-colors"> <td class="px-10 py-6"> <div class="flex flex-col gap-1"> <span class="text-xs font-black text-slate-800 tracking-tight uppercase">Encryption Tier</span> <span class="text-[9px] font-bold text-slate-400 italic">Data security and manifest sealing</span> </div> </td> <td class="p-6 text-center"> <svg class="h-5 w-5 mx-auto text-slate-200" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M6 18L18 6M6 6l12 12" /></svg> </td> <td class="p-6 text-center bg-indigo-600/5"> <svg class="h-6 w-6 mx-auto text-indigo-600" 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> </td> <td class="p-6 text-center"> <svg class="h-6 w-6 mx-auto text-emerald-500" 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> </td> </tr> <!-- Row 4 --> <tr class="group hover:bg-slate-50/30 transition-colors"> <td class="px-10 py-6"> <div class="flex flex-col gap-1"> <span class="text-xs font-black text-slate-800 tracking-tight uppercase">Support Logic</span> <span class="text-[9px] font-bold text-slate-400 italic">Priority audit and manifest help</span> </div> </td> <td class="p-6 text-center text-xs font-bold text-slate-400">Community</td> <td class="p-6 text-center text-xs font-black text-indigo-600 bg-indigo-600/5">24/7 Direct</td> <td class="p-6 text-center text-xs font-black text-slate-900 underline decoration-indigo-200">1:1 Overlord</td> </tr> </tbody> <tfoot> <tr> <td class="px-10 py-8 bg-slate-50/30"></td> <td class="p-8 text-center bg-slate-50/30 border-l border-slate-100"> <button class="px-6 py-3 bg-white border border-slate-200 text-[10px] font-black uppercase tracking-widest italic rounded-xl hover:bg-slate-900 hover:text-white transition-all cursor-pointer">Start 01</button> </td> <td class="p-8 text-center bg-indigo-600 border-l border-indigo-500 shadow-2xl"> <button class="px-8 py-4 bg-white text-indigo-600 text-[10px] font-black uppercase tracking-widest italic rounded-2xl hover:scale-105 transition-all cursor-pointer">Commit 02</button> </td> <td class="p-8 text-center bg-slate-50/30 border-l border-slate-100"> <button class="px-6 py-3 bg-slate-900 text-white text-[10px] font-black uppercase tracking-widest italic rounded-xl hover:bg-indigo-600 transition-all cursor-pointer">Commit 03</button> </td> </tr> </tfoot> </table> </div> </div> </body> </html>