Emerald Elite - 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>Emerald Elite</title> <style> body { font-family: 'Arial', sans-serif; background-color: #e0fff0; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .premium-section { background: linear-gradient(135deg, #50c878, #00a86b); border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); padding: 30px; text-align: center; color: #fff; width: 350px; } .premium-section h1 { font-size: 2.5em; margin-bottom: 10px; } .premium-section p { font-size: 1.2em; margin-bottom: 20px; } .premium-section .cta-button { background: #008000; border: none; border-radius: 50px; padding: 10px 25px; font-size: 1.1em; color: #fff; cursor: pointer; transition: all 0.3s ease; animation: shake 1.5s infinite; } .premium-section .cta-button:hover { background: #006400; } @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } } </style> </head> <body> <div class="premium-section"> <h1>Emerald Elite</h1> <p>Embrace the natural beauty of our Emerald Elite membership.</p> <button class="cta-button">Join Emerald</button> </div> </body> </html>