Bootstrap snippet and html example. Latest News Blog List card

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: blog,news

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 4.6.0 included, to get the result that you can see in the preview selection

<section id="blog" class="fresh-news section-padding">
    <div class="container">
        <div class="section-title text-center">
            <h1>Latest News</h1>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis dignissim. Aenean vitae metus in augue pretium ultrices.</p>
        </div>
        <div class="row">
            <div class="col-lg-4 col-sm-4 col-xs-12">
                <div class="single_blog">
                    <div class="blog_img">
                        <a href="#"><img src="https://www.bootdey.com/image/380x380/9370DB/000000" class="img-fluid" alt="image"></a>
                        <div class="post-date">
                            <span class="date">01</span>
                            <span class="month">Sep</span>
                        </div>
                    </div>
                    <div class="blog_content">
                        <h3><a href="#">Team you want to work with mistake runners</a></h3>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis dignissim.</p>
                    </div>
                </div>
            </div>
            <!-- END COL-->
            <div class="col-lg-4 col-sm-4 col-xs-12">
                <div class="single_blog">
                    <div class="blog_img">
                        <a href="#"><img src="https://www.bootdey.com/image/380x380/9370DB/000000" class="img-fluid" alt="image"></a>
                        <div class="post-date">
                            <span class="date">02</span>
                            <span class="month">Sep</span>
                        </div>
                    </div>
                    <div class="blog_content">
                        <h3><a href="#">Lights winged seasons fish abundantly evening</a></h3>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis dignissim.</p>
                    </div>
                </div>
            </div>
            <!-- END COL-->
            <div class="col-lg-4 col-sm-4 col-xs-12">
                <div class="single_blog">
                    <div class="blog_img">
                        <a href="#"><img src="https://www.bootdey.com/image/380x380/9370DB/000000" class="img-fluid" alt="image"></a>
                        <div class="post-date">
                            <span class="date">03</span>
                            <span class="month">Sep</span>
                        </div>
                    </div>
                    <div class="blog_content">
                        <h3><a href="#">Winged moved stars, food creature seed night</a></h3>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis dignissim.</p>
                    </div>
                </div>
            </div>
            <!-- END COL-->
        </div>
        <!-- END ROW -->
    </div>
    <!-- END CONTAINER -->
</section>

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 4.6.0 included, to get the result that you can see in the preview selection

 body {
     margin-top: 20px;
 }

 .fresh-news {
     padding-bottom: 0;
 }

 .single_blog {
     background: #fff;
     margin-bottom: 30px;
 }

 .blog_img {
     overflow: hidden;
 }

 .blog_img img {
     display: block;
     position: relative;
     -webkit-transition: all 0.4s ease 0s;
     -o-transition: all 0.4s ease 0s;
     transition: all 0.4s ease 0s;
 }

 .single_blog:hover .blog_img img {
     -webkit-transform: scale(1.2);
     -ms-transform: scale(1.2);
     transform: scale(1.2);
 }

 .post-date {
     position: absolute;
     top: -17px;
     right: 0px;
     background: #fff;
     padding: 7px 12px;
     border-radius: 5px;
     text-align: center;
     -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
     box-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
     -webkit-transition: all 0.4s ease 0s;
     -o-transition: all 0.4s ease 0s;
     transition: all 0.4s ease 0s;
 }

 .single_blog:hover .post-date {
     background: #7564e5;
 }

 .single_blog:hover .post-date .date {
     color: #fff;
 }

 .single_blog:hover .post-date .month {
     color: #fff;
 }

 .date {
     font-size: 30px;
     font-weight: 500;
 }

 .month {
     display: block;
     font-size: 15px;
     font-weight: 500;
 }

 .blog_content {
     padding: 20px;
 }

 .blog_content h3 {}

 .blog_content h3 a {
     font-size: 24px;
     font-weight: 500;
     margin-bottom: 10px;
     display: block;
     -webkit-transition: all 0.4s ease 0s;
     -o-transition: all 0.4s ease 0s;
     transition: all 0.4s ease 0s;
     line-height: 36px;
 }

 .blog_content h3 a:hover {
     color: #7564e5;
 }

 .blog-page {
     background: #f5f8fa;
 }

 .single_blog_page {
     background: #fff;
     padding: 60px;
     border-bottom: 1px solid #ddd;
 }

 .single_blog_page img {}

 .single_blog_page img a {}

 .single_blog_page h2 a {
     font-weight: 600;
     font-size: 40px;
     line-height: 52px;
     margin: 20px 0;
     display: block;
     -webkit-transition: 0.3s;
     -o-transition: 0.3s;
     transition: 0.3s;
 }

 .single_blog_page h2 a:hover {
     color: #7564e5;
 }

 .single_blog_page span {}

 .single_blog_page span a {
     color: #7564e5;
     display: inline-block;
     margin-right: 10px;
     margin-bottom: 10px;
 }

 .single_blog_page span a:hover {
     color: #232434;
 }

 .single_blog_page p {
     margin-bottom: 25px;
 }

 .single_blog_page_para {
     margin: 25px 0;
 }

 .single_blog_page_btn {
     color: #7564e5;
 }

 .single_blog_page_btn:hover {
     color: #232434;
 }

 .section-title h1 {
     font-size: 44px;
     font-weight: 500;
     margin-top: 0;
     position: relative;
     text-transform: capitalize;
     margin-bottom: 15px;
 }

 .section-title p {
     padding: 0 10px;
     width: 70%;
     margin: auto;
     letter-spacing: 1px;
 }

 .section-title {
     margin-bottom: 60px;
 }

 .text-center {
     text-align: center !important;
 }

Similar snippets

Bootstrap example and template. Latest News Blog

Latest News Blog

Bootstrap example and template. Blog user profile

Blog user profile

Bootstrap example and template. bs4 Latest News

bs4 Latest News

Bootstrap example and template. bs4 simple search result

bs4 simple search result

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. chat app

chat app

Bootstrap example and template. bs4 invoice

bs4 invoice

Bootstrap example and template. bs5 edit profile account details

bs5 edit profile account details

Bootstrap example and template. Latest News Blog List card

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 539 views, Using this bootstrap snippet you have the following benefits:

Bootstrap 4.6.0

<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>

<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>

This code example is based on bootstrap 4.6.0 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