If it is on Internet it must be true.


Albert Einstein

69

This template shows how to style the blockquote tag.
It includes a quote text and field for the author.
<div class="container">
    <div class="row">
        <div class="col-md-4 col-md-offset-4">
            <blockquote class="inner-block">
                <span class="fa fa-3x fa-quote-right"></span>
                <p class="block-text">
                    If it is on Internet it must be true. 
                </p>
                <hr>
                <div>
                    <p class="pull-left">
                        Albert Einstein
                    </p>
                    <p class="pull-right">
                        <span class="badge">69</span><span class="fa fa-heart"></span>
                    </p>
                </div>
            </blockquote>
        </div>
    </div>
</div>

<style>
    blockquote {
        font-family: 'Droid Sans', sans-serif;
        border-left: none
    }

    .inner-block {
        overflow: hidden;
        border-radius: 17px;
        background-color: #178274;
        margin-top: 25px;
        color:  white;
        width: 325px;
        box-shadow: 0px 5px 20px 5px rgba(0,0,0,0.75);
    }

    .block-text {
        font-size: 19px;
        margin-top: 13px;
    }
</style>
Was this template useful?