Fashion Sale - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Fashion Sale</title> <style> @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap'); body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; font-family: 'Playfair Display', serif; background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%); display: flex; justify-content: center; align-items: center; } .ad-container { width: 300px; height: 380px; background: #ffffff; border-radius: 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); overflow: hidden; position: relative; } .ad-header { background: #d3a4fc; color: #fff; padding: 15px; text-align: center; font-size: 22px; font-weight: 700; } .ad-content { padding: 15px; text-align: center; } .ad-content h2 { font-size: 20px; margin: 15px 0; color: #d3a4fc; } .ad-content p { font-size: 14px; color: #888; } .ad-footer { position: absolute; bottom: 0; width: 100%; padding: 15px; text-align: center; background: #f9f9f9; } .ad-footer button { background: #d3a4fc; border: none; padding: 12px 30px; color: #fff; font-size: 14px; border-radius: 30px; cursor: pointer; transition: background 0.3s; } .ad-footer button:hover { background: #b583fc; } .icon { font-size: 60px; color: #ffffff; animation: rotate 4s infinite linear; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } </style> </head> <body> <div class="ad-container"> <div class="ad-header"> <div class="icon">👗</div> Fashion Sale </div> <div class="ad-content"> <h2>Exclusive Deals</h2> <p>Don't miss out on our latest fashion collection with exclusive discounts. Shop now and upgrade your wardrobe!</p> </div> <div class="ad-footer"> <button>Shop Now</button> </div> </div> <script> document.querySelector('.ad-footer button').addEventListener('click', function() { alert('Redirecting to the fashion sale!'); }); </script> </body> </html>