Lewis Winstone

Footer

A footer is the last port of call for many users and should operate as a navigation system to pages containing copyright information, related documetns, contact information and site maps.

Example

HTML

<div class="footer" style="background-color: #33cccc"> <div class="right"> <img src="linkedin.png" alt="facebook" style="max-height: 50px;"> <img src="instagram.png" alt="facebook" style="max-height: 50px;"> <img src="twitter.png" alt="facebook" style="max-height: 50px;"> <img src="facebook.png" alt="facebook" style="max-height: 50px;"> </div> <div class="left"> <p class="links"> <a href="#">Homepage</a> | <a href="#">Products</a> | <a href="#">Contact</a> | <a href="#">About</a> | <a href="#">Faq</a> | <a href="#">Privacy</a> </p> <p>Footer © 2018</p> </div> </div>

CSS

.footer{ background-color: #292c2f; box-sizing: border-box; width: 100%; text-align: left; padding: 45px 50px; margin-top: 80px; } .footer .footer-left p{ color: white; font-size: 14px; margin: 0; } .footer p.footer-links{ font-size:18px; font-weight: bold; margin: 0 0 10px; padding: 0; } .footer p.footer-links a{ display:inline-block; line-height: 1.8; text-decoration: none; } .footer .footer-right{ float: right; margin-top: 6px; max-width: 180px; } .footer .footer-right a{ display: inline-block; width: 35px; height: 35px; background-color: #33383b; border-radius: 2px; font-size: 20px; color: #ffffff; text-align: center; line-height: 35px; margin-left: 3px; } img { float: right; }