Professional Jumbotron - 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>Professional Jumbotron</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background-color: #f4f4f9; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .jumbotron { position: relative; background: linear-gradient(135deg, #6e8efb, #a777e3); border-radius: 15px; padding: 40px; text-align: center; color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); overflow: hidden; animation: fadeIn 1.5s ease-in-out; } .jumbotron:before, .jumbotron:after { content: ''; position: absolute; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.1); top: 0; left: 0; animation: wave 6s infinite linear; } .jumbotron:after { background: rgba(255, 255, 255, 0.2); animation: wave 6s infinite linear 3s; } .jumbotron .content { position: relative; z-index: 1; } .jumbotron h1 { font-size: 3rem; margin: 0 0 20px; animation: slideInFromLeft 1.5s ease-in-out; } .jumbotron p { font-size: 1.2rem; margin: 0 0 20px; animation: slideInFromRight 1.5s ease-in-out; } .jumbotron .cta { display: inline-block; padding: 10px 20px; font-size: 1.2rem; color: #fff; background: #ff7b7b; border-radius: 25px; text-decoration: none; transition: background 0.3s; animation: bounceIn 2s ease-in-out; } .jumbotron .cta:hover { background: #ff5a5a; } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes wave { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } @keyframes slideInFromLeft { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } } @keyframes slideInFromRight { 0% { transform: translateX(100%); } 100% { transform: translateX(0); } } @keyframes bounceIn { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } .emoji { font-size: 2rem; margin: 0 10px; animation: rotate 2s infinite linear; } .icon { font-size: 2rem; margin: 0 10px; animation: pulse 2s infinite linear; } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } </style> </head> <body> <div class="jumbotron"> <div class="content"> <h1>Welcome to Our Website <span class="emoji">😊</span></h1> <p>Your success starts here <i class="fas fa-rocket icon"></i></p> <a href="#" class="cta">Get Started</a> </div> </div> </body> </html>