
How to create a Responsive Footer Bootstrap
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 Responsive Footer Bootstrap
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 Responsive Footer Bootstrap
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.
<body>
<!-- footer -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-4 col-xs-12">
<div class="first">
<h4>My Skills</h4>
<p> Analytical Skills</p>
<p> Problem-solving skills</p>
<p> Critical-thinking skills</p>
<p> Detail-oriented</p>
<p> Multitasking</p>
<p> Self-motivated</p>
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="second">
<h4> Navigate</h4>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="third">
<h4> Contact</h4>
<ul>
<li>W3school Web</li>
<li></li>
<li><i class="far fa-envelope"></i> w3schoolweb@gmail.com</li>
<li><i class="far fa-envelope"></i> email@gmail.com</li>
<li><i class="fas fa-map-marker-alt"></i> London, UK </li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12">
<div class="line"></div>
<div class="second2">
<a href="#" target="_blank"> <i class="fab fa-codepen fa-2x margin"></i></a>
<a href="#" target="_blank"> <i class="fab fa-github fa-2x margin"></i></a>
<a href="#" target="_blank"> <i class="fab fa-linkedin fa-2x margin"></i></a>
<a href="#" target="_blank"><i class="fab fa-youtube fa-2x margin" ></i></a>
</div>
</div>
</div>
</div>
</div>
</body>
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 href="StyleSheet.css" rel="stylesheet" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.footer {
background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
background-size: cover;
}
.first {
margin-top: 40px;
margin-bottom: 50px;
color: #fff;
font-family: 'Poppins', sans-serif;
}
.first h4 {
font-size: 20px;
letter-spacing: 3px;
position: relative;
margin-bottom: 20px;
font-size: 1.6em;
color: #fff;
padding-bottom: 0.5em;
}
.first h4::after {
content: '';
background: #66c83d;
width: 20%;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
}
.first p {
font-size: 14px;
}
.second {
margin-top: 40px;
margin-bottom: 50px;
color: #FFF;
font-family: 'Poppins', sans-serif;
text-align: center;
}
.second2 {
margin-top: 40px;
margin-bottom: 50px;
color: #FFF;
font-family: 'Poppins', sans-serif;
text-align: center;
}
.second h4 {
font-size: 20px;
letter-spacing: 3px;
position: relative;
margin-bottom: 20px;
font-size: 1.6em;
color: #fff;
padding-bottom: 0.5em;
}
.second h4::after {
content: '';
background: #66c83d;
width: 20%;
height: 2px;
position: absolute;
bottom: 0;
left: 40%;
}
.second li {
list-style: none;
padding-bottom: 30px;
}
.second a, .second2 a {
color: #FFF;
text-decoration: none;
letter-spacing: 3px;
font-weight: bold;
font-size: 14px;
transition: 0.2s;
}
.second a:hover, .second2 a:hover {
color: #fff;
transition: 0.2s;
text-shadow: 1px 1px 20px rgba(0,0,0,1);
text-decoration: none
}
.third {
margin-top: 40px;
margin-bottom: 50px;
color: #FFF;
font-family: 'Poppins', sans-serif;
text-align: right;
}
.third h4 {
font-size: 20px;
letter-spacing: 3px;
position: relative;
margin-bottom: 20px;
font-size: 1.6em;
color: #fff;
padding-bottom: 0.5em;
}
.third h4::after {
content: '';
background: #66c83d;
width: 20%;
height: 2px;
position: absolute;
bottom: 0;
left: 80%;
}
.third li {
list-style: none;
padding-bottom: 15px;
}
.third a {
color: rgb(206, 206, 206);
text-decoration: none;
letter-spacing: 3px;
font-weight: bold;
font-size: 14px;
transition: 0.2s;
}
.third a:hover {
color: #fff;
transition: 0.2s;
text-shadow: 1px 1px 20px rgba(0,0,0,1);
}
@media screen and (max-width:1000px) {
.first {
text-align: center;
}
.first h4::after {
left: 40%;
}
}
@media screen and (max-width:1000px) {
.third {
text-align: center;
}
.third h4::after {
left: 40% !important;
}
}
.margin {
margin-left: 20px;
}
.line {
height:2px;
background-color:rgb(206,206,206);
width:100%;
}
.container h1{
text-align:center;
margin-top:100px;
margin-bottom:100px;
}
</style>
Step 3 – Add JavaScript
We use some external JavaScript link to this code. No need to worry about this, copy and paste below code between <head></head> tag.
<head>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link href="StyleSheet.css" rel="stylesheet" />
</head>
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.