content logo

Bootstrap Footers:

Bootstrap Footer with Subscribe

Many bloggers and business owners ask if they should make a newsletter for their website. Well, the answer to the question above is always “yes”. Even if your website is new and you have just started, it is wise to start building your newsletter from day one. it’s important that you know by now having a newsletter, you are losing visitors, potential members, and money. Regardless of the industry you work in and the amount of daily traffic your website receives, email marketing is an effective and beneficial method.

With that said, you are going to need a way to advertise your newsletter and offer your users a way to join. You can use your social media page, you can use podcasts, etc. but you don’t own those websites. There is one thing, however that you do own and that is your website. You can display your newsletter in your own website. This is probably the most cost-effective way you can get members to join your newsletter.

This post offers a Bootstrap sign up footer which is perfect for a newsletter subscription section. You don’t need an entire page to ask your users to join; a small area like a Bootstrap footer is more than enough. This social network footer offers a nice background, an input field for your users to enter their email address and a subscribe button. all in all, this simple Bootstrap sign up footer is more than enough if you want people to join your newsletter.

#

Bootstrap Footer

#

Sign Up Footer

#

Social Network Footer

#

Bootstrap Sign Up Footer

<!-- This script got from frontendfreecode.com -->
<div class="email">
    <div class="container">
        <div class="row">
            <div class="col-lg-6 col-lg-offset-3 col-md-6 col-xs-6 text-center">
                <h2>Subscribe</h2>
                <form action="" method="post">
                    <div class="input-prepend">
                        <span class="add-on"><i class="icon-envelope"></i></span>
                        <input type="text" id="email-adresi" name="" placeholder="Enter your email adress...">
                    </div>
                    <br />
                    <input type="submit" value="Subscribe !" class="btn btn-abone" style="padding: 12px 58px; border: none; text-align: center; background: #1e76a8; cursor: pointer; color: #FFF; margin: 10px 0px; font-weight: 600; font-size: 16px; cursor: pointer; border-radius: 50px;" />
                </form>
            </div>
        </div>
    </div>
</div>
<div class="footer-top">
    <div class="container">
        <div class="social-icons">
            <i class="icon fa fa-twitter"></i>
            <i class="icon fa fa-facebook"></i>
            <i class="icon fa fa-google-plus"></i>
            <i class="icon fa fa-instagram"></i>
            <i class="icon fa fa-pinterest"></i>
            <i class="icon fa fa-youtube-play"></i>
        </div>
    </div>
</div>
<footer>
    <div class="footer" id="footer">
        <div class="container">
            <div class="row">

                <div class="col-lg-3 col-md-3 col-xs-3">
                    <span class="logo">LOGO</span>
                </div>
                <div class="col-lg-3 col-md-3 col-xs-3">
                    <h3>MENU</h3>
                    <ul>
                        <li><a href="#">Home</a></li>
                        <li><a href="#">Board of Directors</a></li>
                        <li><a href="#">Mission-Vision</a></li>
                        <li><a href="#">About</a></li>
                        <li><a href="#">Contact</a></li>
                    </ul>
                </div>
                <div class="col-lg-3 col-md-3 col-xs-3">
                    <h3>CATEGORIES</h3>
                    <ul>
                        <li><a href="#">Photo Gallery</a></li>
                        <li><a href="#">Video Gallery</a></li>
                        <li><a href="#">News</a></li>
                        <li><a href="#">Announcement</a></li>
                    </ul>
                </div>
                <div class="col-lg-3 col-md-3 col-xs-3">
                    <h3>CONTACT</h3>
                    <ul>
                        <li> <a href="#">Address</a> </li>
                        <li> <a href="#">Phone</a> </li>
                        <li> <a href="#">Fax</a> </li>
                        <li> <a href="#">E-Mail</a> </li>
                    </ul>
                </div>

            </div>
        </div>
    </div>
</footer>
<div class="footer-bottom">
    <p>Copyright © 2017. All right reserved.</p>
</div><a style="font-size: 8pt; text-decoration: none" target="_blank" href="http://frontendfreecode.com">Free Frontend</a>
                                                                            
a:hover {
    text-decoration: none;
}
.row{
    flex-wrap:nowrap!important;
}
.email { background: url("https://frontendfreecode.com/img/space-desk-workspace-coworking.jpg"); min-height: 200px; padding: 70px 0px; width: 100%; }
.email h2, .email p {
    color: #FFF;
    font-weight: 600;
}
#email-adresi {
    margin-top: 20px;
    border: none;
    width: 50%;
    height: 40px;
    padding-left: 10px;
}
.footer {
    padding: 100px 0px;
    color: #ccc;
    background-color: #222;
}
.footer h3 {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer ul {
    font-size: 13px;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
    color: #7F8C8D;
}
.footer ul li a {
    padding: 10px 0px;
    display: block;
    color: #ccc;
    font-weight: 600;
    font-size: 13px;
}
.footer ul li a:hover {
    color: #1e76a8;
}
.footer-bottom {
    background-color: #111;
    color: #282c2d;
    font-size: 12px;
    text-align: center;
    height: 50px;
    line-height: 50px;
}
.footer-bottom p {
    font-size: 13px;
    color: #FFF;
}
.footer-top {
    background-color: #f7f7f7;
    text-align: center;
}
.footer-top .social-icons {
    padding: 50px 0px;
}
.footer-top .social-icons i {
    padding: 0px 20px;
    font-size: 20px;
    color: #aaa;
}
.footer-top .social-icons i:hover {
    color: #1e76a8;
}
.logo {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
}
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" >
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.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 -->

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" >
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" ></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<style>
a:hover {
    text-decoration: none;
}
.row{
    flex-wrap:nowrap!important;
}
.email { background: url("https://frontendfreecode.com/img/space-desk-workspace-coworking.jpg"); min-height: 200px; padding: 70px 0px; width: 100%; }
.email h2, .email p {
    color: #FFF;
    font-weight: 600;
}
#email-adresi {
    margin-top: 20px;
    border: none;
    width: 50%;
    height: 40px;
    padding-left: 10px;
}
.footer {
    padding: 100px 0px;
    color: #ccc;
    background-color: #222;
}
.footer h3 {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer ul {
    font-size: 13px;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
    color: #7F8C8D;
}
.footer ul li a {
    padding: 10px 0px;
    display: block;
    color: #ccc;
    font-weight: 600;
    font-size: 13px;
}
.footer ul li a:hover {
    color: #1e76a8;
}
.footer-bottom {
    background-color: #111;
    color: #282c2d;
    font-size: 12px;
    text-align: center;
    height: 50px;
    line-height: 50px;
}
.footer-bottom p {
    font-size: 13px;
    color: #FFF;
}
.footer-top {
    background-color: #f7f7f7;
    text-align: center;
}
.footer-top .social-icons {
    padding: 50px 0px;
}
.footer-top .social-icons i {
    padding: 0px 20px;
    font-size: 20px;
    color: #aaa;
}
.footer-top .social-icons i:hover {
    color: #1e76a8;
}
.logo {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
}
</style>

</head>
<body>
<div class="email">
    <div class="container">
        <div class="row">
            <div class="col-lg-6 col-lg-offset-3 col-md-6 col-xs-6 text-center">
                <h2>Subscribe</h2>
                <form action="" method="post">
                    <div class="input-prepend">
                        <span class="add-on"><i class="icon-envelope"></i></span>
                        <input type="text" id="email-adresi" name="" placeholder="Enter your email adress...">
                    </div>
                    <br />
                    <input type="submit" value="Subscribe !" class="btn btn-abone" style="padding: 12px 58px; border: none; text-align: center; background: #1e76a8; cursor: pointer; color: #FFF; margin: 10px 0px; font-weight: 600; font-size: 16px; cursor: pointer; border-radius: 50px;" />
                </form>
            </div>
        </div>
    </div>
</div>
<div class="footer-top">
    <div class="container">
        <div class="social-icons">
            <i class="icon fa fa-twitter"></i>
            <i class="icon fa fa-facebook"></i>
            <i class="icon fa fa-google-plus"></i>
            <i class="icon fa fa-instagram"></i>
            <i class="icon fa fa-pinterest"></i>
            <i class="icon fa fa-youtube-play"></i>
        </div>
    </div>
</div>
<footer>
    <div class="footer" id="footer">
        <div class="container">
            <div class="row">

                <div class="col-lg-3 col-md-3 col-xs-3">
                    <span class="logo">LOGO</span>
                </div>
                <div class="col-lg-3 col-md-3 col-xs-3">
                    <h3>MENU</h3>
                    <ul>
                        <li><a href="#">Home</a></li>
                        <li><a href="#">Board of Directors</a></li>
                        <li><a href="#">Mission-Vision</a></li>
                        <li><a href="#">About</a></li>
                        <li><a href="#">Contact</a></li>
                    </ul>
                </div>
                <div class="col-lg-3 col-md-3 col-xs-3">
                    <h3>CATEGORIES</h3>
                    <ul>
                        <li><a href="#">Photo Gallery</a></li>
                        <li><a href="#">Video Gallery</a></li>
                        <li><a href="#">News</a></li>
                        <li><a href="#">Announcement</a></li>
                    </ul>
                </div>
                <div class="col-lg-3 col-md-3 col-xs-3">
                    <h3>CONTACT</h3>
                    <ul>
                        <li> <a href="#">Address</a> </li>
                        <li> <a href="#">Phone</a> </li>
                        <li> <a href="#">Fax</a> </li>
                        <li> <a href="#">E-Mail</a> </li>
                    </ul>
                </div>

            </div>
        </div>
    </div>
</footer>
<div class="footer-bottom">
    <p>Copyright © 2017. All right reserved.</p>
</div><div id="bcl"><a style="font-size:8pt;text-decoration:none;" href="http://www.devanswer.com">Free Frontend</a></div>

</body>
</html>
Preview