Elegance 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>Elegance Footer</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #ffafbd, #ffc3a0); display: flex; flex-direction: column; min-height: 100vh; justify-content: flex-end; overflow-x: hidden; } .footer { width: 100%; background: rgba(255, 255, 255, 0.2); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.4); padding: 50px 25px; animation: fadeIn 2s ease-in-out; display: flex; justify-content: space-around; flex-wrap: wrap; color: #fff; box-sizing: border-box; } .footer-section { flex: 1; margin: 10px; min-width: 220px; box-sizing: border-box; } .footer-section h2 { font-size: 26px; margin-bottom: 15px; position: relative; } .footer-section h2::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 60px; height: 4px; background: #fff; } .footer-section ul { list-style: none; padding: 0; } .footer-section ul li { margin: 12px 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: 25px; } .footer-section .social-icons a { color: #fff; font-size: 26px; 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>