
How to create a Responsive & clean footer design
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 & clean footer design
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 & clean footer design
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>
W3schoolWeb
</main>
<footer class="flex-rw">
<ul class="footer-list-top">
<li>
<h4 class="footer-list-header">About Pavilion</h4></li>
<li><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">GET TO KNOW US</a></li>
<li><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">PROMOS</a></li>
<li><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">BECOME A RETAILER</a></li>
<li><a href='' itemprop="significantLink" class="generic-anchor footer-list-anchor">JOB OPENINGS</a></li>
<li><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">EVENTS</a></li>
</ul>
<ul class="footer-list-top">
<li>
<h4 class="footer-list-header">The Gift Selection</h4></li>
<li><a href='' class="generic-anchor footer-list-anchor">ANGEL FIGURINES</a></li>
<li><a href='' class="generic-anchor footer-list-anchor">HOME DECOR</a></li>
<li><a href='' class="generic-anchor footer-list-anchor">MUGS</a></li>
<li><a href='' class="generic-anchor footer-list-anchor">PET LOVER</a></li>
<li><a href='' class="generic-anchor footer-list-anchor" target="_blank">HANDBAGS & JEWELRY</a></li>
</ul>
<ul class="footer-list-top">
<li id='help'>
<h4 class="footer-list-header">Please Help Me</h4></li>
<li><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">CONTACT</a></li>
<li><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">FAQ</a></li>
<li id='find-a-store'><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">STORE LOCATOR</a></li>
<li id=''><a href='' class="generic-anchor footer-list-anchor" itemprop="significantLink">NEW USERS</a></li>
<li id='order-tracking'><a href='' itemprop="significantLink" class="generic-anchor footer-list-anchor">ORDER STATUS</a></li>
</ul>
<section class="footer-social-section flex-rw">
<span class="footer-social-overlap footer-social-connect">
CONNECT <span class="footer-social-small">with</span> US
</span>
<span class="footer-social-overlap footer-social-icons-wrapper">
<a href="#" class="generic-anchor" target="_blank" title="Pinterest" itemprop="significantLink"><i class="fa fa-pinterest"></i></a>
<a href="#" class="generic-anchor" target="_blank" title="Facebook" itemprop="significantLink"><i class="fa fa-facebook"></i></a>
<a href="#" class="generic-anchor" target="_blank" title="Twitter" itemprop="significantLink"><i class="fa fa-twitter"></i></a>
<a href="#" class="generic-anchor" target="_blank" title="Instagram" itemprop="significantLink"><i class="fa fa-instagram"></i></a>
<a href="#" class="generic-anchor" target="_blank" title="Youtube" itemprop="significantLink"><i class="fa fa-youtube"></i></a>
<a href="#" class="generic-anchor" target="_blank" title="Google Plus" itemprop="significantLink"><i class="fa fa-google-plus"></i></a>
</span>
</section>
<section class="footer-bottom-section flex-rw">
<div class="footer-bottom-wrapper">
<i class="fa fa-copyright" role="copyright">
</i> 2020 W3schoolweb<span class="footer-bottom-rights"> - All Rights Reserved </span>
</div>
</section>
</footer>
Step 2 – Add CSS
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
$primary-light-blue: #8DB9ED;
$primary-line-color: #ccc;
* {
box-sizing: border-box
}
html, body {
height: 100%
}
body {
font: 11px "Open Sans", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: auto;
display: flex;
flex-flow: column nowrap;
//This justify-content is essentially unnecessary in Firefox and Chrome due to the flex: 1 1 auto on the main. However, it's needed to push the footer down on IE11
justify-content: space-between
}
ul {
list-style: none
}
a {
text-decoration: none
}
.generic-anchor {
color: $primary-light-blue;
&:visited {
color: $primary-light-blue
}
&:hover {
color: $primary-line-color
}
}
.flex-rw {
display: flex;
flex-flow: row wrap;
}
//This main is mostly to push the footer to the bottom and for demo purposes.
main {
flex: 1 1 auto; //For IE11
display: flex;
align-items: center;
justify-content: center;
font: 10em "Oswald", sans-serif;
color: rgb(155,155,155);
line-height: 1
}
footer {
background: rgb(55,55,55);
margin-top: auto;
width: 100%
}
.footer-list-top {
width: 33.333%
}
.footer-list-top > li {
text-align: center;
padding-bottom: 10px
}
.footer-list-header {
padding: 10px 0 5px 0;
color: #fff;
font: 2.3vw "Oswald", sans-serif
}
.footer-list-anchor {
font: 1.3em "Open Sans", sans-serif
}
.footer-social-section {
width: 100%;
align-items: center;
justify-content: space-around;
position: relative;
margin-top: 5px;
}
.footer-social-section::after {
content: "";
position: absolute;
z-index: 1;
top: 50%;
left: 10px;
border-top: 1px solid $primary-line-color;
width: calc(100% - 20px)
}
.footer-social-overlap {
position: relative;
z-index: 2;
background: rgb(55,55,55);
padding: 0 20px
}
.footer-social-connect {
display: flex;
align-items: center;
font: 3.5em "Oswald", sans-serif;
color: #fff
}
.footer-social-small {
font-size: 0.6em;
padding: 0px 20px
}
.footer-social-overlap > a {
font-size: 3em
}
.footer-social-overlap > a:not(:first-child) {
margin-left: 0.38em
}
.footer-bottom-section {
width: 100%;
padding: 10px;
border-top: 1px solid $primary-line-color;
margin-top: 10px
}
.footer-bottom-section > div:first-child {
margin-right: auto
}
.footer-bottom-wrapper {
font-size: 1.5em;
color: #fff
}
.footer-address {
display: inline;
font-style: normal
}
@media only screen and (max-width: 768px) {
.footer-list-header {
font-size: 2em
}
.footer-list-anchor {
font-size: 1.1em
}
.footer-social-connect {
font-size: 2.5em
}
.footer-social-overlap > a {
font-size: 2.24em
}
.footer-bottom-wrapper {
font-size: 1.3em
}
}
@media only screen and (max-width: 568px) {
main {
font-size: 5em
}
.footer-list-top {
width: 100%
}
.footer-list-header {
font-size: 3em;
}
.footer-list-anchor {
font-size: 1.5em
}
.footer-social-section {
justify-content: center
}
.footer-social-section::after {
top: 25%
}
.footer-social-connect {
margin-bottom: 10px;
padding: 0 10px
}
.footer-social-overlap {
display: flex;
justify-content: center;
}
.footer-social-icons-wrapper {
width: 100%;
padding: 0
}
.footer-social-overlap > a:not(:first-child) {
margin-left: 20px;
}
.footer-bottom-section {
padding: 0 5px 10px 5px
}
.footer-bottom-wrapper {
text-align: center;
width: 100%;
margin-top: 10px
}
}
@media only screen and (max-width: 480px) {
.footer-social-overlap > a {
margin: auto
}
.footer-social-overlap > a:not(:first-child) {
margin-left: 0;
}
.footer-bottom-rights {
display: block
}
}
@media only screen and (max-width: 320px) {
.footer-list-header {
font-size: 2.2em
}
.footer-list-anchor {
font-size: 1.2em
}
.footer-social-connect {
font-size: 2.4em
}
.footer-social-overlap > a {
font-size: 2.24em
}
.footer-bottom-wrapper {
font-size: 1.3em
}
}
</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.