
How to create a Simple Footer Responsive
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 Responsive
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 Responsive
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.
<section class="contact-area" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="contact-content text-center">
<a href="#"><img src="https://w3schoolweb.com/wp-content/uploads/2020/10/logo-1.png" alt="logo"></a>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum </p>
<div class="hr"></div>
<h6>1120 Lorem ipsum dolor sit amet, KC 179050, Chandigarh.</h6>
<h6>+01 2345 6789 12<span>|</span>+01 2345 6789 12</h6>
<div class="contact-social">
<ul>
<li><a class="hover-target" href=""><i class="fab fa-facebook-f"></i></a></li>
<li><a class="hover-target" href=""><i class="fab fa-linkedin-in"></i></a></li>
<li><a class="hover-target" href=""><i class="fab fa-github"></i></a></li>
<li><a class="hover-target" href=""><i class="fab fa-behance"></i></a></li>
<li><a class="hover-target" href=""><i class="fab fa-pinterest-p"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============== 1.9 Contact Area End ====================-->
<!-- =============== 1.9 Footer Area Start ====================-->
<footer>
<p>© Copyright 2020, W3SchoolWeb. All Rights Reserved </p>
</footer>
Step 2 – Add CSS
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
img {
max-width: 100%;
height: auto;
}
section {
padding: 60px 0;
/* min-height: 100vh;*/
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
.contact-area {
border-bottom: 1px solid #353C46;
}
.contact-content p {
font-size: 15px;
margin: 30px 0 60px;
position: relative;
}
.contact-content p::after {
background: #353C46;
bottom: -30px;
content: "";
height: 1px;
left: 50%;
position: absolute;
transform: translate(-50%);
width: 80%;
}
.contact-content h6 {
color: #8b9199;
font-size: 15px;
font-weight: 400;
margin-bottom: 10px;
}
.contact-content span {
color: #353c47;
margin: 0 10px;
}
.contact-social {
margin-top: 30px;
}
.contact-social > ul {
display: inline-flex;
}
.contact-social ul li a {
border: 1px solid #8b9199;
color: #8b9199;
display: inline-block;
height: 40px;
margin: 0 10px;
padding-top: 7px;
transition: all 0.4s ease 0s;
width: 40px;
}
.contact-social ul li a:hover {
border: 1px solid #FAB702;
color: #FAB702;
}
.contact-content img {
max-width: 210px;
}
section, footer {
background: #1A1E25;
color: #868c96;
}
footer p {
padding: 40px 0;
text-align: center;
}
footer img {
width: 44px;
}
</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.