Bootstrap snippet and html example. user blog widget

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: post,user,widget

HTML code

This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 3.3.4 included, to get the result that you can see in the preview selection

<div class="container bootstrap snippets bootdey">
    <div class="col-md-6">
        <div class="widget widget-blog">
            <div class="widget-blog-cover">
                <img src="https://www.bootdey.com/image/400x200/FFB6C1/000000" alt="">
            </div>
            <div class="widget-blog-author">
                <div class="widget-blog-author-image">
                    <img src="https://bootdey.com/img/Content/user_1.jpg" alt="">
                </div>
                <div class="widget-blog-author-info">
                    <h5 class="m-t-0 m-b-1">Serhiy Navin</h5>
                    <p class="text-muted m-0 f-s-11">Front End Designer</p>
                </div>
            </div>
            <div class="widget-blog-content">
                <h5>Lorem ipsum dolor sit amec adipiscing elit.</h5>
                <p>
                    Nulla condimentum sodales urna, at consequat urna laoreet non. Aenean id porttitor odio, id elementum augue. Donec rhoncus semper mi.
                </p>
            </div>
        </div>
    </div>
    <div class="col-md-6">
        <div class="widget widget-blog">
            <div class="widget-blog-cover">
                <img src="https://www.bootdey.com/image/400x200/87CEFA/000000" alt="">
            </div>
            <div class="widget-blog-author">
                <div class="widget-blog-author-image">
                    <img src="https://bootdey.com/img/Content/user_2.jpg" alt="">
                </div>
                <div class="widget-blog-author-info">
                    <h5 class="m-t-0 m-b-1">Serhiy Navin</h5>
                    <p class="text-muted m-0 f-s-11">Front End Designer</p>
                </div>
            </div>
            <div class="widget-blog-content">
                <h5>Lorem ipsum dolor sit amec adipiscing elit.</h5>
                <p>
                    Nulla condimentum sodales urna, at consequat urna laoreet non. Aenean id porttitor odio, id elementum augue. Donec rhoncus semper mi.
                </p>
            </div>
        </div>
    </div>
    <div class="col-md-6">
        <div class="widget widget-blog">
            <div class="widget-blog-cover">
                <img src="https://www.bootdey.com/image/400x200/FF7F50/000000" alt="">
            </div>
            <div class="widget-blog-author">
                <div class="widget-blog-author-image">
                    <img src="https://bootdey.com/img/Content/user_3.jpg" alt="">
                </div>
                <div class="widget-blog-author-info">
                    <h5 class="m-t-0 m-b-1">Serhiy Navin</h5>
                    <p class="text-muted m-0 f-s-11">Front End Designer</p>
                </div>
            </div>
            <div class="widget-blog-content">
                <h5>Lorem ipsum dolor sit amec adipiscing elit.</h5>
                <p>
                    Nulla condimentum sodales urna, at consequat urna laoreet non. Aenean id porttitor odio, id elementum augue. Donec rhoncus semper mi.
                </p>
            </div>
        </div>
    </div>
    <div class="col-md-6">
        <div class="widget widget-blog">
            <div class="widget-blog-cover">
                <img src="https://www.bootdey.com/image/400x200/20B2AA/000000" alt="">
            </div>
            <div class="widget-blog-author">
                <div class="widget-blog-author-image">
                    <img src="https://bootdey.com/img/Content/user_6.jpg" alt="">
                </div>
                <div class="widget-blog-author-info">
                    <h5 class="m-t-0 m-b-1">Serhiy Navin</h5>
                    <p class="text-muted m-0 f-s-11">Front End Designer</p>
                </div>
            </div>
            <div class="widget-blog-content">
                <h5>Lorem ipsum dolor sit amec adipiscing elit.</h5>
                <p>
                    Nulla condimentum sodales urna, at consequat urna laoreet non. Aenean id porttitor odio, id elementum augue. Donec rhoncus semper mi.
                </p>
            </div>
        </div>
    </div>
</div>

CSS code

This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 3.3.4 included, to get the result that you can see in the preview selection

body{
background:#eee;
margin-top:20px;
}

.widget {
    border: none;
    box-shadow: 0 2px 0 rgba(0,0,0,.07);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    padding: 20px;
    display: block;
}

.widget-blog-cover {
    overflow: hidden;
    padding-top: 60%;
}

.widget-blog-cover, .widget-stat-header {
    position: relative;
    border-radius: 5px 5px 0 0;
    margin: -20px -20px 20px;
}

.animation-grow-hover, .widget-blog .widget-blog-cover img {
    transition: all .1s ease-in-out;
}

.widget-blog-cover img:hover{
    max-width: 110%;
    min-height: 110%;
    margin-left: -5%;
    margin-top: -5%;    
}

.widget-blog-cover img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    min-height: 100%;
}

.widget-blog-author {
    margin: -20px -20px 0;
    padding: 10px 20px;
}

.widget-blog-author-image {
    float: left;
    margin-top: -30px;
    padding: 5px;
    border-radius: 70px;
    width: 70px;
    height: 70px;
    background: #fff;
    position: relative;
}

.widget-blog-author-image img {
    max-width: 100%;
    border-radius: 70px;
}

.text-muted {
    color: #aab3ba;
}
.f-s-11 {
    font-size: 11px!important;
}
.m-0 {
    margin: 0!important;
}

Similar snippets

Bootstrap example and template. Google choose an account style

Google choose an account style

Bootstrap example and template. Profile page

Profile page

Bootstrap example and template. Photo post

Photo post

Bootstrap example and template. Seller profile

Seller profile

Bootstrap example and template. Frequently Asks Questions accordion

Frequently Asks Questions accordion

Bootstrap example and template. project progress list

project progress list

Bootstrap example and template. profile with info skills and friends

profile with info skills and friends

Bootstrap example and template. bs4 sevices page

bs4 sevices page

Bootstrap example and template. user blog widget

About this bootstrap example/template

We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.

We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.

This code example currectly have 6.5K views, Using this bootstrap snippet you have the following benefits:

Bootstrap 3.3.4

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.3.4 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working