Professional Unique 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 Unique Jumbotron</title> <style> body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%); } .jumbotron { position: relative; text-align: center; padding: 100px 25px; background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%); color: white; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); overflow: hidden; } .jumbotron h1 { font-size: 3em; margin: 0; animation: fadeInDown 1.5s ease-out; } .jumbotron p { font-size: 1.2em; margin: 20px 0 0; animation: fadeInUp 1.5s ease-out; } .jumbotron .icon { font-size: 2em; margin-right: 10px; animation: bounceIn 2s ease-in-out infinite; } .jumbotron .emoji { font-size: 1.5em; margin-left: 10px; animation: zoomIn 2s ease-in-out; } .jumbotron .cta-button { display: inline-block; margin-top: 20px; padding: 15px 30px; font-size: 1.2em; color: #2193b0; background-color: white; border: none; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; animation: fadeIn 2s ease; } .jumbotron .cta-button:hover { background-color: #2193b0; color: white; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .jumbotron .background { position: absolute; top: 50%; left: 50%; width: 120%; height: 120%; background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(0,0,0,0)); transform: translate(-50%, -50%) scale(1.5); animation: rotateBackground 10s linear infinite; z-index: 0; } .jumbotron .content { position: relative; z-index: 1; } @keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes bounceIn { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @keyframes zoomIn { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes rotateBackground { 0% { transform: translate(-50%, -50%) scale(1.5) rotate(0deg); } 100% { transform: translate(-50%, -50%) scale(1.5) rotate(360deg); } } </style> </head> <body> <div class="jumbotron"> <div class="background"></div> <div class="content"> <h1><i class="icon">🚀</i> Welcome to Our Service <span class="emoji">🎉</span></h1> <p>Experience the best with our top-notch services and user-friendly interface. <i class="emoji">👍</i></p> <button class="cta-button">Get Started</button> </div> </div> </body> </html>