Tech Vibes - 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>Tech Vibes</title> <style> @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Montserrat', sans-serif; background: #1d1f20; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .main-content { background: #333; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.25); border-radius: 12px; overflow: hidden; max-width: 850px; width: 100%; animation: slide-up 0.8s ease-out; } @keyframes slide-up { 0% { transform: translateY(50px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } .header { background: linear-gradient(135deg, #00c6ff, #0072ff); color: #fff; padding: 20px; text-align: center; font-size: 22px; font-weight: 700; } .content { padding: 20px; } .content p { font-size: 16px; line-height: 1.5; margin-bottom: 20px; } .content .cta { display: flex; justify-content: center; } .content .cta button { background: #00c6ff; color: #fff; padding: 10px 20px; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; } .content .cta button:hover { background: #0072ff; transform: scale(1.05); } .footer { background: #222; padding: 15px; text-align: center; } .footer p { margin: 0; font-size: 14px; } </style> </head> <body> <div class="main-content"> <div class="header"> Tech Vibes 💻 </div> <div class="content"> <p>Dive into the tech world with this vibrant and dynamic content area. Crafted for tech enthusiasts, it brings the latest trends and innovations right to your fingertips.</p> <div class="cta"> <button onclick="alert('Action Initiated!')">Explore Now 🚀</button> </div> </div> <div class="footer"> <p>© 2024 Tech Vibes</p> </div> </div> </body> </html>