
Responsive footer using Bootstrap and CSS3
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. Responsive footer using Bootstrap and CSS3
So if you are a person who wishes to develop a website, you have to know how to create that properly.

Responsive footer using Bootstrap and CSS3
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.
<main>
<div class="container">
<div class="row">
<div class="col-12 col-md-6 col-lg-2">
<div class="first">
<h5 class="contact">Contact Us</h5>
<ul class="list-unstyled">
<li>Contact Us</li>
<li>Submit Ticket</li>
</ul>
</div>
<div class="second">
<h5 class="about">About</h5>
<ul class="list-unstyled">
<li>Contact Us</li>
<li>Submit Ticket</li>
<li>Submit Ticket</li>
</ul>
</div>
</div>
<div class="col-12 col-md-6 col-lg-2">
<div class="first">
<h5 class="features">Key Features</h5>
<ul class="list-unstyled">
<li>Backup & Restore</li>
<li>WooCommerce Backup</li>
<li>Migration</li>
<li>Staging</li>
<li>WordPress Merge</li>
<li>White Label Solution</li>
</ul>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="first">
<h5 class="comparison">Comparison Pages</h5>
<ul class="list-unstyled">
<li>BlogVault vs BackupBuddy</li>
<li>BlogVault vs InfiniteWP</li>
<li>BlogVault vs ManageWP</li>
<li>BlogVault vs UpdraftPlus</li>
<li>BlogVault vs VaultPress</li>
</ul>
</div>
</div>
<div class="col-12 col-md-6 col-lg-2">
<div class="first">
<h5 class="help">Help Resources</h5>
<ul class="list-unstyled">
<li>FAQ</li>
<li>Help Docs</li>
<li>Support</li>
</ul>
</div>
<div class="second-less">
<h5 class="affiliate">Affiliate Partners</h5>
<ul class="list-unstyled">
<li>Become An Affiliate</li>
<li>See Our Partners</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-3">
<div class="first">
<h5 class="artical">Top Articals</h5>
<p>Unlimited Backup Plugin Guide Multisite Wordpress Backups Best WooCommerce Backups Wordpress
Stagining with BlogVault Top 5 WordPress Security Plugins</p>
</div>
</div>
</div>
<div class="row ">
<div class="col-4">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
</div>
</div>
<div class="row">
<div class="col-12">
<ul class="list-unstyled list-inline">
<li class="list-inline-item">Privacy Policy</li>
<li class="list-inline-item">Terms Of Services</li>
<li class="list-inline-item">GDPR</li>
<li class="list-inline-item">Cookies Policy</li>
<li class="list-inline-item">© 2020 W3schoolweb All Rights Reserved</li>
</ul>
</div>
</div>
</div>
</main>
Step 2 – Add CSS
We use some external CSS link to this code. No need to worry about this, copy and paste below code between <style></style> tag.
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
</head>
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
main {
background-color: #F4D03F;
background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
padding: 64px 0 32px 0;
color: #fefefe;
}
main .second {
margin-top: 50px;
}
main h5 {
position: relative;
font-weight: 500;
width: 100%;
text-transform: uppercase;
}
main h5:after {
content: '';
position: absolute;
height: 1px;
bottom: -8px;
left: 0;
background: #fff;
}
main ul {
padding-top: 12px;
}
main .contact:after {
width: 100px;
}
main .about:after {
width: 60px;
}
main .features:after {
width: 115px;
}
main .comparison:after {
width: 170px;
}
main .help:after {
width: 140px;
}
main .affiliate:after {
width: 150px;
}
main .artical:after {
width: 110px;
}
main .container .row:nth-child(2) i {
color: #111;
font-size: 16px;
padding: 8px;
border-radius: 50%;
background-color: #fff;
}
main .container .row:nth-child(2) i:after {
content: '';
position: absolute;
bottom: -8px;
left: 20px;
height: 1px;
width: 20px;
background: #fff;
}
main .container .row:nth-child(2) i:nth-child(2):after {
left: 55px;
}
main .container .row:nth-child(3) {
padding: 28px 0;
}
main .container .row:nth-child(3) h3 {
font-weight: 800;
}
main .container .row:nth-child(3) .list-inline-item:after {
content: '';
position: absolute;
margin-left: 4px;
margin-top: 6px;
height: 16px;
width: 2px;
background: #fff;
}
main .container .row:nth-child(3) .list-inline-item:nth-last-child(1):after {
content: '';
background: none;
}
@media only screen and (max-width: 650px) {
.first,
.second {
margin-top: 24px !important;
}
}
</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.