Tech Tools - 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 Tools</title> <style> body, html { margin: 0; padding: 0; font-family: 'Arial', sans-serif; overflow-x: hidden; } .hero { position: relative; width: 100%; height: 100vh; background: url('https://source.unsplash.com/1600x900/?technology') no-repeat center center/cover; color: white; display: flex; align-items: center; justify-content: center; text-align: center; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1; } .hero-content { position: relative; z-index: 2; animation: fadeInUp 1.5s ease-out; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } } .hero h1 { font-size: 4rem; margin: 0; } .hero p { font-size: 1.5rem; margin: 20px 0; } .cta-button { padding: 15px 30px; font-size: 1.2rem; color: #fff; background: #3498db; border: none; border-radius: 50px; cursor: pointer; transition: background 0.3s ease-in-out; } .cta-button:hover { background: #2980b9; } </style> </head> <body> <div class="hero"> <div class="hero-overlay"></div> <div class="hero-content"> <h1>Innovative Tech Tools</h1> <p>Empower your business with cutting-edge technology.</p> <button class="cta-button">Discover More</button> </div> </div> </body> </html>