Ruby Membership - 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>Ruby Membership</title> <style> body { font-family: 'Arial', sans-serif; background-color: #fff; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .premium-section { background: linear-gradient(135deg, #ff6347, #ff4500); 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: #ff0000; border: none; border-radius: 50px; padding: 10px 25px; font-size: 1.1em; color: #fff; cursor: pointer; transition: all 0.3s ease; animation: bounce 1.5s infinite; } .premium-section .cta-button:hover { background: #dc143c; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } </style> </head> <body> <div class="premium-section"> <h1>Ruby Membership</h1> <p>Unlock the fiery benefits of our Ruby Membership.</p> <button class="cta-button">Join Ruby</button> </div> </body> </html>