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 Feature 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="max-w-7xl w-full bg-white p-12 lg:p-20 rounded-[4rem] shadow-4xl border border-white"> <div class="text-center mb-20 space-y-4"> <h2 class="text-4xl lg:text-5xl font-black text-slate-900 tracking-tighter italic">Compare Mesh Sovereignty.</h2> <p class="max-w-xl mx-auto text-lg text-slate-500 font-medium italic">Detailed analysis of the standard, pro, and enterprise neural protocols.</p> </div> <div class="overflow-x-auto"> <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-bold text-slate-400 uppercase tracking-widest italic">Neural Protocol Analysis</span> </th> <th class="p-10 text-center border-l border-slate-100"> <h4 class="text-sm font-bold 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-bold 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-bold text-slate-900 tracking-tight italic">Elite</h4> </th> </tr> </thead> <tbody class="divide-y divide-slate-50"> <!-- Feature 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-bold text-slate-800 tracking-tight uppercase">Neural Sync Speed</span> <span class="text-[9px] font-medium text-slate-400 italic">Core manifest broadcast latency</span> </div> </td> <td class="p-6 text-center text-xs font-medium text-slate-500 italic">Standard</td> <td class="p-6 text-center text-xs font-bold text-indigo-600 bg-indigo-600/5 italic">Instant Handshake</td> <td class="p-6 text-center text-xs font-medium text-slate-900 italic uppercase tracking-widest">Instant Handshake</td> </tr> <!-- Feature 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-bold text-slate-800 tracking-tight uppercase">Spectral Bandwidth</span> <span class="text-[9px] font-medium text-slate-400 italic">Total data throughput allowance</span> </div> </td> <td class="p-6 text-center text-xs font-medium text-slate-500 italic">100 GB</td> <td class="p-6 text-center text-xs font-bold text-indigo-600 bg-indigo-600/5 italic">1 TB</td> <td class="p-6 text-center text-xs font-medium text-slate-900 italic uppercase tracking-widest">Unlimited</td> </tr> <!-- Feature 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-bold text-slate-800 tracking-tight uppercase">Encryption Tier</span> <span class="text-[9px] font-medium text-slate-400 italic">Data security and manifest sealing</span> </div> </td> <td class="p-6 text-center text-slate-200">-</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> <!-- Feature 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-bold text-slate-800 tracking-tight uppercase">Support Logic</span> <span class="text-[9px] font-medium text-slate-400 italic">Priority audit and manifest help</span> </div> </td> <td class="p-6 text-center text-xs font-medium text-slate-400 italic">Community</td> <td class="p-6 text-center text-xs font-bold text-indigo-600 bg-indigo-600/5 italic">24/7 Direct</td> <td class="p-6 text-center text-xs font-medium text-slate-900 italic uppercase">1:1 Overlord</td> </tr> </tbody> </table> </div> </div> </body> </html>