
Recreating footer of Google Developers
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. Recreating footer of Google Developers Site
So if you are a person who wishes to develop a website, you have to know how to create that properly.

Recreating footer of Google Developers
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.
<header class="demo">
<h1 class="title"><a href="#">Google Developers</a> Footer Recreation</h1>
<p class="description">recreation of responsive footer from <a href="#">developers.google.com</a>. footer automatically changes the amount and size of the content based on the media query. this layout is making good use of <a href="#">flexbox</a></p>
</header>
<footer class="social-footer-promo">
<nav class="full-width">
<ul class="social-footer-promos-list">
<li class="social-link-promo-item">
<a href="#" class="social-link-promo">
<div class="social-link-icon"><img src="https://www.gstatic.com/images/icons/material/product/2x/chrome_chromium_64dp.png" alt="Chromium Icon" /></div>
<div class="social-link-title">Chromium Blog</div>
<div class="social-link-description">The latest news on the Chromium blog</div>
</a>
</li>
<li class="social-link-promo-item">
<a href="#" class="social-link-promo">
<div class="social-link-icon"><img src="https://developers.google.com/site-assets/logo-github.svg" alt="Github icon" /></div>
<div class="social-link-title">Github</div>
<div class="social-link-description">Fork our API code-samples and other open source projects</div>
</a>
</li>
<li class="social-link-promo-item">
<a href="#" class="social-link-promo">
<div class="social-link-icon"><img src="https://developers.google.com/site-assets/logo-twitter.svg" alt="Twitter Icon" /></div>
<div class="social-link-title">Twitter</div>
<div class="social-link-description">Connect with <a class="twitter-link" href="#">@w3schoolweb</a> on Twitter</div>
</a>
</li>
<li class="social-link-promo-item">
<a href="#" class="social-link-promo">
<div class="social-link-icon"><img src="https://www.gstatic.com/images/icons/material/product/2x/youtube_64dp.png" alt="Youtube Icon" /></div>
<div class="social-link-title">Videos</div>
<div class="social-link-description">Check out the Web Developer Relations team's videos</div>
</a>
</li>
<li class="social-link-promo-item">
<a href="#" class="social-link-promo">
<div class="social-link-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M13 9H9v4h4V9zm2-7h-1V1h-2v1H6V1H4v1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H4V6h10v8z"/></svg>
</div>
<div class="social-link-title">Events</div>
<div class="social-link-description">Attend a developer event and get hacking</div>
</a>
</li>
</ul>
</nav>
</footer>
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://fonts.googleapis.com/css?family=Roboto">
</head>
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
body {
margin: 0;
font-family: "Roboto", sans-serif;
}
header.demo {
text-align: center;
max-width: 900px;
margin: 20px auto;
}
header.demo a {
color: black;
font-weight: bold;
text-decoration: none;
}
header.demo a:hover {
text-decoration: underline;
}
.full-width {
max-width: 1400px;
margin: 0 auto;
}
footer.social-footer-promo {
font: 14px/20px "Roboto", sans-serif;
background-color: #f7f7f7;
padding: 8px 20px;
margin: 90px auto;
}
ul.social-footer-promos-list {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
align-items: center;
align-content: space-between;
}
ul.social-footer-promos-list li.social-link-promo-item {
text-align: center;
width: 200px;
}
.social-footer-promos-list a.social-link-promo {
text-decoration: none;
color: black;
}
.social-link-promo-item .social-link-icon {
margin: 0 auto 8px;
width: 48px;
height: 48px;
color: rgba(0, 0, 0, 0.87);
}
.social-link-promo-item .social-link-icon img {
width: 100%;
height: 100%;
}
/**
* SVG Images should get the color from the color
* property to make things consistent with rest of the items
* such as font icons
*/
.social-link-promo-item .social-link-icon svg {
fill: currentColor;
}
.social-link-promo-item .social-link-title {
font-weight: bold;
}
/**
* Media Query to eliminate some of the
* content not needed for the purpose
* of viewing but keeping it still there
*/
@media all and (max-width: 750px) {
.social-link-promo-item .social-link-description {
display: none;
}
.social-link-promo-item .social-link-icon {
width: 36px;
height: 36px;
margin: 0;
margin-right: 0.5em;
}
a.social-link-promo {
text-align: left;
display: flex;
flex-flow: row;
justify-content: flex-start;
align-items: center;
white-space: nowrap;
margin: 0;
padding: 8px;
}
a.social-link-promo .social-link-title {
font-weight: normal;
}
}
</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.