
Bootsrap5 Footer With Social Media Icons
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. Bootsrap5 Footer With Social Media Icons
So if you are a person who wishes to develop a website, you have to know how to create that properly.

Bootsrap5 Footer With Social Media Icons
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.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<section class="footer">
<div class="container">
<div class="footer__content">
<div class="footer__heading">
<h2>W3schoolWeb</h2>
</div>
<p class="mb-0">Content & Graphics © 2020 info@gmail.com LLC</p>
<ul class="social__media">
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-youtube" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</section>
Step 2 – Add CSS
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
section.footer {
background-color: #21d4fd;
position: relative;
font-family: "Poppins";
padding: 25px 0px;
}
.footer__content {
padding: 25px;
text-align: center;
color: #fff;
background-color: #21d4fd;
}
.footer__content img {
width: 5%;
position: absolute;
top: -50px;
border: 1px solid red;
}
.footer__heading {
position: relative;
}
.footer__heading h2 {
background-color: #21d4fd;
display: inline-block;
padding: 0px 10px;
/* border: 1px solid; */
position: relative;
z-index: 9999;
}
.footer__heading::after {
content: "";
position: absolute;
left: 50%;
top: 45%;
height: 5px;
margin: 0;
border-radius: 50px;
width: 20%;
transform: translate(-50%, -50%);
background-color: rgb(255, 255, 255);
}
.footer__content p {
font-size: 12px;
font-weight: 100;
padding: 10px 0px;
}
ul.social__media {
margin: 0;
padding: 0;
display: inline-block;
margin-top: 15px;
}
ul.social__media li {
list-style-type: none;
display: inline-block;
margin-right: 15px;
}
ul.social__media li a {
color: #fff;
font-size: 20px;
}
ul.social__media li {
text-align: center;
height: 45px;
width: 45px;
border-radius: 50px;
background-color: tomato;
line-height: 40px;
border: 2px solid #545d5d;
box-shadow: 0px 1px #fff;
box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.55),
0 0px 20px 0px rgba(0, 0, 0, 0.55);
}
ul.bus__list {
padding: 0;
margin: 0;
}
ul.bus__list li {
list-style-type: none;
margin-bottom: 5px;
}
</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.