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 Video Embed</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"> <div class="max-w-4xl w-full"> <div class="bg-white p-6 rounded-[4rem] shadow-4xl border border-white space-y-8"> <!-- Video Container --> <div class="relative aspect-video rounded-[3rem] overflow-hidden bg-slate-900 group"> <!-- Placeholder/Poster --> <img src="https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&q=80" class="absolute inset-0 h-full w-full object-cover opacity-60 group-hover:scale-105 transition-transform duration-1000"> <!-- Play Button Overlay --> <div class="absolute inset-0 flex items-center justify-center"> <button class="h-24 w-24 bg-white/10 backdrop-blur-xl border border-white/20 rounded-full flex items-center justify-center group-hover:scale-110 group-hover:bg-indigo-600 transition-all shadow-2xl cursor-pointer"> <svg class="h-8 w-8 text-white ml-2" fill="currentColor" viewBox="0 0 24 24"><path d="M8 5v14l11-7z" /></svg> </button> </div> <!-- Meta Overlay --> <div class="absolute bottom-10 left-10 space-y-2"> <span class="px-4 py-1.5 bg-indigo-600 text-white text-[10px] font-black uppercase tracking-widest rounded-full shadow-lg shadow-indigo-500/20">Protocol Briefing</span> <h3 class="text-3xl font-black text-white tracking-tight">Kinetic Alignment 0.4</h3> </div> <!-- Duration Badge --> <div class="absolute top-8 right-8 px-4 py-2 bg-slate-900/60 backdrop-blur rounded-2xl text-[10px] font-black text-white uppercase tracking-widest"> 14:22 READOUT </div> </div> <div class="px-6 flex items-center justify-between"> <div class="flex items-center gap-4"> <div class="h-12 w-12 rounded-xl bg-indigo-50 border border-indigo-100 overflow-hidden"> <img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?w=100&h=100&fit=crop" class="h-full w-full object-cover"> </div> <div> <p class="text-sm font-bold text-slate-900 leading-tight">Sarah Jenkins</p> <p class="text-[9px] font-black text-slate-400 uppercase tracking-widest mt-1">Senior Architect</p> </div> </div> <button class="text-indigo-600 text-[10px] font-black uppercase tracking-widest hover:underline cursor-pointer">Manifest Log</button> </div> </div> </div> </body> </html>