Futuristic Glow - 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>Futuristic Glow</title> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins: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: 'Poppins', sans-serif; background: #1e1e2f; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .futuristic-glow { background: #2e2e4e; border-radius: 15px; padding: 20px; width: 80%; max-width: 1000px; text-align: center; color: #ffffff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); position: relative; } .futuristic-glow h1 { font-size: 2.5em; margin: 0.5em 0; color: #8e44ad; text-shadow: 0 0 10px #8e44ad; animation: pulseGlow 2s infinite; } .futuristic-glow 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: #8e44ad; font-size: 2em; transition: transform 0.3s, color 0.3s; } .icon-bar a:hover { transform: scale(1.2); color: #ffffff; } .emoji { font-size: 3em; animation: rotateEmoji 3s infinite linear; } @keyframes pulseGlow { 0%, 100% { text-shadow: 0 0 10px #8e44ad; } 50% { text-shadow: 0 0 20px #8e44ad; } } @keyframes rotateEmoji { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } </style> </head> <body> <div class="futuristic-glow"> <h1>Explore the Future 💫</h1> <p>Dive into a world of futuristic designs and glowing aesthetics. This section is a glimpse into the future of web design.</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>