Ultimate Plan - 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>Ultimate Plan</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f7f7f7; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .pricing-table { display: flex; flex-direction: column; background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s; width: 300px; max-width: 350px; } .pricing-table:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); } .pricing-header { background: #e74c3c; color: #fff; padding: 20px; text-align: left; font-size: 1.75em; } .pricing-body { padding: 20px; text-align: left; } .pricing-body ul { list-style: none; padding: 0; margin: 0; } .pricing-body ul li { margin: 15px 0; font-size: 1.1em; display: flex; align-items: center; } .pricing-body ul li::before { content: '🔥'; margin-right: 10px; color: #e74c3c; } .pricing-price { font-size: 2.5em; color: #333; margin: 20px 0; text-align: left; } .pricing-button { background: #e74c3c; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 50px; transition: background 0.3s, transform 0.3s; display: inline-block; text-align: center; } .pricing-button:hover { background: #c0392b; transform: translateY(-5px); } </style> </head> <body> <div class="pricing-table"> <div class="pricing-header"> Ultimate Plan </div> <div class="pricing-body"> <ul> <li>All-inclusive Support</li> <li>Unlimited Projects</li> <li>Advanced Analytics</li> <li>Custom Branding</li> <li>Priority Support</li> </ul> <div class="pricing-price"> $299/mo </div> <a href="#" class="pricing-button">Sign Up</a> </div> </div> </body> </html>