Footer Neon - 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>Footer Neon</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <style> body { margin: 0; font-family: 'Arial', sans-serif; background-color: #000; color: #00ff99; } .footer-neon { background-color: #000; color: #00ff99; padding: 50px 0; text-align: center; position: relative; box-shadow: 0 0 5px #00ff99, 0 0 5px #00ff99, 0 0 5px #00ff99, 0 0 5px #00ff99; } .footer-neon h3 { font-size: 24px; margin-bottom: 20px; text-shadow: 0 0 10px #00ff99; } .footer-neon p, .footer-neon a { color: rgba(0, 255, 153, 0.8); text-decoration: none; transition: color 0.3s ease; } .footer-neon a:hover { color: #00ff99; } .footer-neon .footer-links { margin: 20px 0; } .footer-neon .footer-links a { margin: 0 15px; display: inline-block; } .footer-neon .footer-social-icons { margin-top: 30px; } .footer-neon .footer-social-icons a { color: #00ff99; margin: 0 10px; font-size: 24px; transition: transform 0.3s; } .footer-neon .footer-social-icons a:hover { transform: scale(1.2); } .footer-neon .footer-bottom { margin-top: 30px; font-size: 14px; border-top: 1px solid rgba(0, 255, 153, 0.2); padding-top: 20px; } .footer-neon .footer-emoji { animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } } </style> </head> <body> <footer class="footer-neon"> <div> <h3>FooterNeon</h3> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> <div class="footer-links"> <a href="#">Home</a> <a href="#">Services</a> <a href="#">About</a> <a href="#">Contact</a> </div> <div class="footer-social-icons"> <a href="#"><i class="fab fa-facebook-f"></i></a> <a href="#"><i class="fab fa-twitter"></i></a> <a href="#"><i class="fab fa-instagram"></i></a> <a href="#"><i class="fab fa-linkedin-in"></i></a> </div> <div class="footer-bottom"> © 2024 FooterNeon. All rights reserved. <span class="footer-emoji">🌟</span> </div> </footer> </body> </html>