
How to create a simple footer – four columns
Before We Start
Every developer needs clean and modern elements to develop their websites, It contains pictures and a user interface element within a website. The most important one and the first section that the user sees when the user enters a website. How to create a simple footer – four columns
So if you are a person who wishes to develop a website, you have to know how to create that properly.

How to create a simple footer – four columns
We are here to solve your problem. In this article we discuss how to create these elements. Before we start please read the below articles which easier you to understand the process, if you are new to development.
Step 1 – Add HTML
It’s too easy and simple. Just copy and paste below code in your HTML editor between <body> </body> tag.
<footer class="main-footer">
<div class="container">
<!--Widgets Section-->
<div class="widgets-section">
<div class="row clearfix">
<!--Column-->
<div class="big-column col-lg-6 col-md-12 col-sm-12">
<div class="row clearfix">
<!--Footer Column-->
<div class="footer-column col-lg-7 col-md-6 col-sm-12">
<div class="footer-widget about-widget">
<div class="logo">
<a href="#"><img src="https://w3schoolweb.com/wp-content/uploads/2020/10/logo-1.png" alt="" /></a>
</div>
<div class="text">
<p>Lorem ipsum dolor amet consectetur adipisicing elit sed eiusm tempor incididunt ut labore dolore magna aliqua enim ad minim veniam.</p>
<p>Quis nostrud exercitation ullam aboris nisi aliquip exea commodo consequat duis aute irure.</p>
</div>
</div>
</div>
<!--Footer Column-->
<div class="footer-column col-lg-5 col-md-6 col-sm-12">
<div class="footer-widget links-widget">
<h2>Quick Links</h2>
<ul class="footer-list">
<li><a href="#">Company History</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--Column-->
<div class="big-column col-lg-6 col-md-12 col-sm-12">
<div class="row clearfix">
<!--Footer Column-->
<div class="footer-column col-lg-6 col-md-6 col-sm-12">
<div class="footer-widget gallery-widget">
<h2>Gallery</h2>
<div class="widget-content">
<div class="http://t.commonsupport.com/morris/images-outer clearfix">
<!--Image Box-->
<figure class="image-box"><a href="#" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="https://i.ibb.co/CKNmhMX/blog1.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="#" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="https://i.ibb.co/m5yGbdR/blog2.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="#" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="https://i.ibb.co/CKNmhMX/blog1.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="#" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="https://i.ibb.co/m5yGbdR/blog2.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="#" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="https://i.ibb.co/CKNmhMX/blog1.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="#" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="https://i.ibb.co/m5yGbdR/blog2.jpg" alt=""></a></figure>
</div>
</div>
</div>
</div>
<!--Footer Column-->
<div class="footer-column col-lg-6 col-md-6 col-sm-12">
<div class="footer-widget info-widget">
<h2>Contact Info</h2>
<ul class="info-list">
<li>Flat 20, Lorem ipsum dolor amet consectetur adipisicing</li>
<li>+2(305) 555-1234</li>
<li>info@w3schoolweb.com</li>
</ul>
<!-- Social Links -->
<ul class="social-links">
<li class="google"><a href="#"><span class="fab fa-google-plus-g"></span></a></li>
<li class="facebook"><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li class="instagram"><a href="#"><span class="fab fa-instagram"></span></a></li>
<li class="twitter"><a href="#"><span class="fab fa-twitter"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom">
<div class="container">
<div class="row clearfix">
<div class="column col-lg-6 col-md-12 col-sm-12">
<div class="copyright"><span class="theme_color">© Copyright 2020, W3SchoolWeb. All Rights Reserved</div>
</div>
<div class="column col-lg-6 col-md-12 col-sm-12">
<ul class="footer-nav">
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
Step 2 – Add CSS
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
h1,
h2,
h3,
h4,
h5,
h6 {
}
a,
a:hover,
a:focus,
a:active {
text-decoration: none;
outline: none;
}
a,
a:active,
a:focus {
color: #333;
text-decoration: none;
transition-timing-function: ease-in-out;
-ms-transition-timing-function: ease-in-out;
-moz-transition-timing-function: ease-in-out;
-webkit-transition-timing-function: ease-in-out;
-o-transition-timing-function: ease-in-out;
transition-duration: 0.2s;
-ms-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
-webkit-transition-duration: 0.2s;
-o-transition-duration: 0.2s;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
section {
padding: 60px 0;
/* min-height: 100vh;*/
}
.main-footer {
position: relative;
padding: 110px 0px 0px;
background-color: #f4f5f7;
background-repeat: repeat-x;
background-position: right bottom;
}
.main-footer .footer-widget {
position: relative;
margin-bottom: 40px;
}
.main-footer .widgets-section {
position: relative;
padding-bottom: 60px;
}
.main-footer .footer-widget h2 {
position: relative;
font-size: 22px;
font-weight: 600;
color: #161c42;
line-height: 1.2em;
margin-bottom: 30px;
margin-top: 25px;
text-transform: capitalize;
}
.main-footer .about-widget {
position: relative;
}
.main-footer .about-widget .logo {
position: relative;
margin-bottom: 15px;
width: 210px;
}
.main-footer .about-widget .text {
position: relative;
}
.main-footer .about-widget .text p {
position: relative;
color: #8a8d91;
font-size: 15px;
line-height: 1.7em;
margin-bottom: 20px;
}
.main-footer .about-widget .text p:last-child {
margin-bottom: 0px;
}
/* Footer List */
.main-footer .footer-list {
position: relative;
}
.main-footer .footer-list li {
position: relative;
margin-bottom: 17px;
}
.main-footer .footer-list li a {
position: relative;
color: #8a8d91;
font-size: 15px;
padding-left: 15px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-footer .footer-list li a:hover {
text-decoration: underline;
color: #ff6666;
}
.main-footer .footer-list li a:before {
position: absolute;
content: "\f105";
left: 0px;
top: 0px;
color: #8a8d91;
font-weight: 800;
font-family: "Font Awesome 5 Free";
}
/*Gallery Widget*/
.main-footer .gallery-widget {
position: relative;
max-width: 350px;
}
.main-footer .gallery-widget .images-outer {
position: relative;
margin: 0px -3px;
}
.main-footer .gallery-widget .image-box {
position: relative;
float: left;
width: 33.333%;
padding: 0px 5px;
margin-bottom: 10px;
}
.main-footer .gallery-widget .image-box img {
position: relative;
display: block;
width: 100%;
border-radius: 4px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-footer .gallery-widget .image-box img:hover {
opacity: 0.7;
}
/* Info List */
.main-footer .info-list {
position: relative;
}
.main-footer .info-list li {
position: relative;
color: #8a8d91;
font-size: 15px;
line-height: 1.8em;
margin-bottom: 12px;
}
.main-footer .info-widget .social-links {
position: relative;
float: left;
padding: 15px 0px;
}
.main-footer .info-widget .social-links li {
position: relative;
margin-right: 8px;
display: inline-block;
}
.main-footer .info-widget .social-links li:last-child {
margin-right: 0px;
}
.main-footer .info-widget .social-links li a {
position: relative;
color: #ffffff;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
border-radius: 50%;
display: inline-block;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-footer .info-widget .social-links li.google a {
background-color: #dd4b39;
}
.main-footer .info-widget .social-links li.facebook a {
background-color: #4a6fbe;
}
.main-footer .info-widget .social-links li.twitter a {
background-color: #55acee;
}
.main-footer .info-widget .social-links li.instagram a {
background-color: #ea4c89;
}
.main-footer .info-widget .social-links li.vimeo a {
background-color: #1ab7ea;
}
.main-footer .footer-bottom {
position: relative;
padding: 20px 0px;
border-top: 1px solid #e5e5e5;
}
.main-footer .footer-bottom .footer-nav {
position: relative;
text-align: right;
}
.main-footer .footer-bottom .footer-nav li {
position: relative;
padding-right: 10px;
margin-right: 10px;
line-height: 1.1em;
display: inline-block;
border-right: 1px solid #8a8d91;
}
.main-footer .footer-bottom .footer-nav li:last-child {
padding-right: 0px;
margin-right: 0px;
border-right: none;
}
.main-footer .footer-bottom .footer-nav li a {
position: relative;
color: #8a8d91;
font-size: 15px;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-footer .footer-bottom .footer-nav li a:hover {
color: #ff6666;
text-decoration: underline;
}
</style>
At the end we will have something like this. You can change fonts, colors, backgrounds and all things that you want. Enjoy it.
Your Output

Video Tutorial
Please watch this video to better understand this tutorial and don’t forget to subscribe to our channel.
Help others to find out about this article on Social Media sites. If you have any doubt or any problem, don’t hesitate to contact us. Thereafter we will be able to help you and also make sure you bookmark our site on your browser.