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 Image With Caption</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center items-center min-h-screen p-6 antialiased"> <figure class="max-w-3xl w-full bg-white p-6 rounded-[4rem] shadow-4xl border border-white space-y-6"> <div class="rounded-[3rem] overflow-hidden border border-slate-50"> <img src="https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1200" alt="Neural Node Mesh" class="w-full h-auto"> </div> <figcaption class="px-8 pb-4 space-y-3"> <div class="flex items-center gap-3"> <div class="h-1 w-8 bg-indigo-600 rounded-full"></div> <span class="text-[10px] font-black text-indigo-600 uppercase tracking-[0.3em]">Technical Specification</span> </div> <p class="text-slate-500 text-lg leading-relaxed font-medium">Fig 4.2: Real-time kinetic alignment visualized across the US-East Apex node cluster, showing sub-cycle authorization handshake sequences in a high-latency environment.</p> <div class="flex gap-4 pt-2"> <span class="text-[9px] font-black text-slate-300 uppercase tracking-widest">Source: Vanguard Logs</span> <span class="text-[9px] font-black text-slate-300 uppercase tracking-widest">Date: Mar 2026</span> </div> </figcaption> </figure> </body> </html>