content logo

Bootstrap Footers:

Bootstrap Footer with Colorful and Stylish Social Icons

If you, like many other companies, have an active social media page, then you probably need a way to showcase it in your website. Fortunately, there are many places and various methods for you to do this. You can add your social accounts at the end of each post, during the posts, on the content you provide and many more. One great place that can be the perfect location for having these links however, is the footer. This section includes all the contact information and the necessary links that users want to see. You can add your social media links to this area as well. Just remember to design the footer well enough that it lures the visitors all the way to the bottom of the page so they can read this section.

The code we are sharing with you in this post is a simple Bootstrap social icons template. You can have your links in the social networks icons. The footer features a black background and various Bootstrap social icons. This amazing Bootstrap footer also includes all the necessary SEO features required to improve the score of your website. So, don’t hesitate and add this colourful footer to your website right away.

#

Bootstrap Footer

#

Colorful Footer

#

Social Networks Icons

#

Bootstrap Social Icons

#

Footer Social Icons

<!-- This script got from frontendfreecode.com -->
<div class="footer">
    <div class="container">
        <a href='#'><i class="fa fa-twitch fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-facebook fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-twitter fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-youtube-play fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-rss fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-vine fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-flickr fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-linkedin fa-3x fa-fw"></i></a>
    </div>
</div><a style="font-size: 8pt; text-decoration: none" target="_blank" href="http://frontendfreecode.com">Free Frontend</a>
                                                                            
html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 150px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background-color: #111;
    text-align: center;
}
.container {
    margin-top: 50px;
    color: #fff;
    width: 100%;
}
.fa-twitter {
    color: #4099FF;
}
.fa-facebook {
    color: #3B5998;
}
.fa-youtube-play {
    color: #e52d27;
}
.fa-rss {
    color: #FF6600;
}
.fa-vine {
    color: #00a478;
}
.fa-flickr {
    color: #ff0084;
}
.fa-twitch {
    color: #6441A5;
}
.fa-linkedin {
    color: #007bb6;
}

.fa {
    opacity: 0.7;
    transition: 1s;
    -webkit-transition: 1s;
}
.fa:hover {
    opacity: 1;
    transition: 1s;
    -webkit-transition: 1s;
}
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- This script got from frontendfreecode.com -->

<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<style>
html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 150px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background-color: #111;
    text-align: center;
}
.container {
    margin-top: 50px;
    color: #fff;
    width: 100%;
}
.fa-twitter {
    color: #4099FF;
}
.fa-facebook {
    color: #3B5998;
}
.fa-youtube-play {
    color: #e52d27;
}
.fa-rss {
    color: #FF6600;
}
.fa-vine {
    color: #00a478;
}
.fa-flickr {
    color: #ff0084;
}
.fa-twitch {
    color: #6441A5;
}
.fa-linkedin {
    color: #007bb6;
}

.fa {
    opacity: 0.7;
    transition: 1s;
    -webkit-transition: 1s;
}
.fa:hover {
    opacity: 1;
    transition: 1s;
    -webkit-transition: 1s;
}
</style>

</head>
<body>
<div class="footer">
    <div class="container">
        <a href='#'><i class="fa fa-twitch fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-facebook fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-twitter fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-youtube-play fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-rss fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-vine fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-flickr fa-3x fa-fw"></i></a>
        <a href='#'><i class="fa fa-linkedin fa-3x fa-fw"></i></a>
    </div>
</div><div id="bcl"><a style="font-size:8pt;text-decoration:none;" href="http://www.devanswer.com">Free Frontend</a></div>

</body>
</html>
Preview