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 Product Card</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-center justify-center min-h-screen p-6 antialiased"> <div class="w-full max-w-sm group"> <div class="bg-white rounded-[2.5rem] shadow-2xl overflow-hidden border border-white transition-all duration-500 group-hover:-translate-y-4 group-hover:shadow-[0_40px_80px_-15px_rgba(0,0,0,0.1)]"> <div class="h-72 bg-slate-100 flex items-center justify-center relative overflow-hidden"> <img src="https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?w=800" alt="Product" class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110"> <div class="absolute top-6 right-6"> <span class="px-4 py-2 bg-rose-600 text-white text-[10px] font-black uppercase tracking-widest rounded-full shadow-xl">New Release</span> </div> </div> <div class="p-8"> <div class="flex justify-between items-start mb-4"> <div> <h3 class="text-2xl font-black text-slate-900 tracking-tighter italic">Stellar Node-01.</h3> <p class="text-xs font-bold text-slate-400 uppercase tracking-widest mt-1">Industrial Hardware</p> </div> <span class="text-xl font-black text-slate-900">$2,499</span> </div> <button class="w-full h-14 bg-slate-900 text-white rounded-2xl font-black text-xs uppercase tracking-widest shadow-lg hover:bg-indigo-600 transition active:scale-95 cursor-pointer mt-4">Initialize Acquisition</button> </div> </div> </div> </body> </html>