Mega 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/6.0.0-beta3/css/all.min.css"> <title>Mega Footer</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #ff7e5f, #feb47b); display: flex; flex-direction: column; min-height: 100vh; justify-content: flex-end; overflow-x: hidden; /* Prevent horizontal scroll */ } .footer { width: 100%; background: rgba(255, 255, 255, 0.1); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); padding: 40px 20px; animation: fadeIn 2s ease-in-out; display: flex; justify-content: space-around; flex-wrap: wrap; color: #fff; box-sizing: border-box; /* Ensure padding does not affect width */ } .footer-section { flex: 1; margin: 10px; min-width: 200px; box-sizing: border-box; /* Ensure padding does not affect width */ } .footer-section h2 { font-size: 24px; margin-bottom: 10px; position: relative; } .footer-section h2::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 50px; height: 3px; background: #fff; } .footer-section ul { list-style: none; padding: 0; } .footer-section ul li { margin: 10px 0; } .footer-section ul li a { text-decoration: none; color: #fff; transition: transform 0.3s ease; } .footer-section ul li a:hover { transform: scale(1.1); } .footer-section .social-icons { display: flex; gap: 20px; } .footer-section .social-icons a { color: #fff; font-size: 24px; transition: transform 0.3s ease; } .footer-section .social-icons a:hover { transform: rotate(360deg); } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } </style> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> </head> <body> <div class="footer"> <div class="footer-section"> <h2>Company</h2> <p>About us, our mission, vision, and values.</p> </div> <div class="footer-section"> <h2>Quick Links</h2> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#services">Services</a></li> <li><a href="#contact">Contact</a></li> </ul> </div> <div class="footer-section"> <h2>Contact Us</h2> <ul> <li>123 Street Name, City, State</li> <li>Email: info@company.com</li> <li>Phone: (123) 456-7890</li> </ul> </div> <div class="footer-section"> <h2>Follow Us</h2> <div class="social-icons"> <a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a> <a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a> <a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a> <a href="https://www.linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i></a> </div> </div> </div> </body> </html>