UNPKG

lightswind

Version:

A modern frontend library with pre-built Tailwind CSS components for building responsive and interactive user interfaces.

35 lines (28 loc) 1.26 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>@codewith_muhilan</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="flex items-center justify-center h-screen bg-gray-50"> <div class="w-full sm:w-[300px] md:w-[250px] mx-auto text-white"> <div class="container-flipcardlw "> <div class="front-flipcardlw shadow-lg pt-[45%]" style="background-image: url(https://images.pexels.com/photos/28749618/pexels-photo-28749618/free-photo-of-majestic-view-of-the-taj-mahal-in-agra.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1)"> <div class="inner-flipcardlw"> <p class="relative botom-20 text-lg">INDIA</p> <span class="span-flipcardlw text-gray-300">Taj Mahal</span> </div> </div> <div class="back-flipcardlw shadow-lg pt-[45%]"> <div class="inner-flipcardlw"> <p class="relative botom-20 text-lg">Taj Mahal is a beautiful and most attractive historical place in India</p> </div> </div> </div> </div> </body> </html>