Unique And Professional Section - 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>Unique and Professional Section</title> <style> @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@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: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .unique-section { background: linear-gradient(135deg, #ff7e5f, #feb47b); border-radius: 15px; padding: 20px; width: 80%; max-width: 1000px; text-align: center; color: white; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); animation: slideIn 1s ease-out; } .unique-section h1 { font-size: 2.5em; margin: 0.5em 0; position: relative; display: inline-block; animation: bounce 2s infinite; } .unique-section h1::before { content: '✨'; position: absolute; left: -30px; top: -10px; animation: sparkle 1.5s infinite; } .unique-section p { font-size: 1.2em; line-height: 1.5em; margin: 20px 0; } .icon-bar { margin: 20px 0; display: flex; justify-content: center; gap: 20px; } .icon-bar a { color: white; font-size: 2em; transition: transform 0.3s; } .icon-bar a:hover { transform: scale(1.2); animation: rotateIcon 0.5s; } @keyframes slideIn { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-20px); } 60% { transform: translateY(-10px); } } @keyframes sparkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } @keyframes rotateIcon { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .emoji { font-size: 3em; animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } } </style> </head> <body> <div class="unique-section"> <h1>Welcome to the Future! 🚀</h1> <p>This is a professional section designed to be attractive and highly usable. Explore the animations, emojis, and icons that make this section stand out!</p> <div class="icon-bar"> <a href="#" class="fab fa-facebook-f"></a> <a href="#" class="fab fa-twitter"></a> <a href="#" class="fab fa-linkedin-in"></a> <a href="#" class="fab fa-github"></a> </div> <p class="emoji">🌟</p> </div> </body> </html>