Premium Section - 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>Premium Section</title> <style> /* General Styles */ body { font-family: 'Arial', sans-serif; background-color: #f5f5f5; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .premium-section { background: linear-gradient(135deg, #6e8efb, #a777e3); border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); overflow: hidden; position: relative; width: 400px; max-width: 100%; padding: 20px; text-align: center; color: #fff; } .premium-section h1 { font-size: 2.5em; margin: 0; animation: fadeInDown 1s ease-in-out; } .premium-section p { font-size: 1.2em; margin: 20px 0; animation: fadeInUp 1s ease-in-out; } .premium-section .cta-button { background: #ff8a00; border: none; border-radius: 50px; padding: 10px 25px; font-size: 1.1em; color: #fff; cursor: pointer; transition: all 0.3s ease; animation: pulse 2s infinite; display: flex; align-items: center; justify-content: center; } .premium-section .cta-button:hover { background: #ff6f00; transform: translateY(-5px); } .premium-section .cta-button i { margin-right: 10px; } /* Animations */ @keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } /* Emoji Styles */ .emoji { font-size: 1.5em; margin: 0 5px; animation: bounce 2s infinite; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } </style> </head> <body> <div class="premium-section"> <h1>🌟 Premium Access</h1> <p>Unlock exclusive features and benefits by joining our premium membership! 🚀</p> <center><button class="cta-button"><i class="fas fa-gem"></i> Join Now</button></center> <br /> <div class="emojis"> <span class="emoji">🔥</span> <span class="emoji">✨</span> <span class="emoji">💎</span> </div> </div> <!-- Font Awesome for Icons --> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> </body> </html>