Neumorphic 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"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> <script src="https://kit.fontawesome.com/f2c67a1c6b.js" crossorigin="anonymous"></script> <title>Neumorphic Footer</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background: #f0f0f3; } .footer { background-image: linear-gradient(to top left, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, 0)); box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6), inset -2px -2px 3px rgba(0, 0, 0, .6); padding: 40px 20px; display: flex; flex-direction: column; align-items: center; position: relative; } .footer .social-icons { display: flex; gap: 20px; margin-bottom: 20px; } .footer .social-icons a { width: 50px; height: 50px; background: #e0e0e0; border-radius: 50%; display: flex; align-items: center; text-decoration: none; justify-content: center; box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(255, 255, 255, 0.7); transition: transform 0.3s, box-shadow 0.3s; } .footer .social-icons a:hover { transform: translateY(-10px); box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15), -8px -8px 20px rgba(255, 255, 255, 0.9); } .footer .social-icons a i { font-size: 24px; color: #555; } .footer .nav-links { display: flex; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; justify-content: center; } .footer .nav-links a { text-decoration: none; color: #555; font-size: 18px; transition: color 0.3s; } .footer .nav-links a:hover { color: #000; } .footer p { color: #777; font-size: 14px; text-align: center; } .footer .animate-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.2); animation: animate-bg 3s infinite; pointer-events: none; } @keyframes animate-bg { 0% { transform: translateX(-100%); } 50% { transform: translateX(100%); } 100% { transform: translateX(-100%); } } </style> </head> <body> <footer class="footer"> <div class="animate-bg"></div> <div class="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="nav-links"> <a href="#">Home</a> <a href="#">About</a> <a href="#">Services</a> <a href="#">Contact</a> <a href="#">Privacy Policy</a> </div> <p>© 2024 Your Company. All rights reserved.</p> </footer> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> </body> </html>