Vibrant Neon Footer - 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>Vibrant Neon Footer</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: #1a1a1d; color: white; } .footer { background: #1a1a1d; color: white; padding: 50px 0; text-align: center; position: relative; } .footer h2 { font-size: 2.5em; margin-bottom: 20px; animation: neonGlow 1.5s infinite; } @keyframes neonGlow { 0%, 100% { text-shadow: 0 0 10px #00b3ff, 0 0 20px #00b3ff, 0 0 30px #00b3ff, 0 0 40px #00b3ff, 0 0 50px #00b3ff; } 50% { text-shadow: 0 0 5px #00b3ff, 0 0 10px #00b3ff, 0 0 15px #00b3ff, 0 0 20px #00b3ff, 0 0 25px #00b3ff; } } .footer .social-icons a { color: #00b3ff; margin: 0 15px; font-size: 2em; transition: transform 0.3s; display: inline-block; } .footer .social-icons a:hover { transform: scale(1.1); } .footer .contact-info { margin: 30px 0; } .footer .contact-info p { font-size: 1.2em; line-height: 1.8em; animation: fadeIn 1.5s; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .footer .copy { margin-top: 40px; font-size: 1em; animation: fadeInUp 1.5s; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .footer .subscribe-form input[type="email"] { padding: 10px; border: none; border-radius: 50px 0 0 50px; outline: none; width: 300px; max-width: 100%; background: #333; color: white; } .footer .subscribe-form button { padding: 10px; border: none; border-radius: 0 50px 50px 0; background: #00b3ff; color: white; cursor: pointer; transition: background 0.3s; } .footer .subscribe-form button:hover { background: #0099cc; } .footer .subscribe-form { display: flex; justify-content: center; margin-top: 30px; } </style> </head> <body> <footer class="footer"> <h2>Neon Connect</h2> <div class="social-icons"> <a href="#" title="Facebook"><i class="fab fa-facebook-f"></i></a> <a href="#" title="Twitter"><i class="fab fa-twitter"></i></a> <a href="#" title="Instagram"><i class="fab fa-instagram"></i></a> <a href="#" title="LinkedIn"><i class="fab fa-linkedin-in"></i></a> <a href="#" title="Youtube"><i class="fab fa-youtube"></i></a> </div> <div class="contact-info"> <p>📍 1357 Bright Street, Neon City</p> <p>📞 +321 654 9870</p> <p>📧 neon@example.com</p> </div> <div class="subscribe-form"> <input type="email" placeholder="Enter your email"> <button type="submit">Subscribe</button> </div> <div class="copy">© 2024 Neon Company. All Rights Reserved.</div> </footer> </body> </html>