Premium 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>Premium Membership</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f0f0f0; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .container { display: flex; justify-content: space-around; width: 80%; } .tier { background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); padding: 30px; text-align: center; width: 300px; margin: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .tier:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); } .tier h2 { font-size: 2em; margin-bottom: 10px; } .tier p { font-size: 1.2em; margin-bottom: 20px; } .cta-button { border: none; border-radius: 50px; padding: 10px 25px; font-size: 1.1em; color: #fff; cursor: pointer; transition: background 0.3s ease; } .basic { background: linear-gradient(135deg, #d3d3d3, #a9a9a9); } .basic .cta-button { background: #696969; } .basic .cta-button:hover { background: #808080; } .silver { background: linear-gradient(135deg, #c0c0c0, #a9a9a9); } .silver .cta-button { background: #b0c4de; } .silver .cta-button:hover { background: #afeeee; } .gold { background: linear-gradient(135deg, #ffd700, #ff8c00); } .gold .cta-button { background: #ff4500; } .gold .cta-button:hover { background: #e63e00; } @keyframes glow { 0% { box-shadow: 0 0 5px #ff4500; } 50% { box-shadow: 0 0 20px #ff4500; } 100% { box-shadow: 0 0 5px #ff4500; } } .gold .cta-button { animation: glow 1.5s infinite; } </style> </head> <body> <div class="container"> <div class="tier basic"> <h2>Basic Plan</h2> <p>Access to basic features and community support.</p> <button class="cta-button">Choose Basic</button> </div> <div class="tier silver"> <h2>Silver Plan</h2> <p>Includes all Basic features plus priority support.</p> <button class="cta-button">Choose Silver</button> </div> <div class="tier gold"> <h2>Gold Plan</h2> <p>All features of Silver, plus premium content and resources.</p> <button class="cta-button">Choose Gold</button> </div> </div> </body> </html>