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.5.0 included, to get the result that you can see in the preview selection
Download<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/5.3.45/css/materialdesignicons.css" integrity="sha256-NAxhqDvtY0l4xn+YVa6WjAcmd94NNfttjNsDmNatFVc=" crossorigin="anonymous" />
<div class="container mt-100 mt-60">
<div class="row">
<div class="col-12 text-center">
<div class="section-title mb-4 pb-2">
<h4 class="title mb-4">Latest Blog & News</h4>
<p class="text-muted para-desc mx-auto mb-0">Build responsive, mobile-first projects on the web with the world's most popular front-end component library.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div class="blog-post rounded border">
<div class="blog-img d-block overflow-hidden position-relative">
<img src="https://www.bootdey.com/image/350x280/FF7F50/000000" class="img-fluid rounded-top" alt="">
<div class="overlay rounded-top bg-dark"></div>
<div class="post-meta">
<a href="javascript:void(0)" class="text-light d-block text-right like"><i class="mdi mdi-heart"></i> 33</a>
<a href="javascript:void(0)" class="text-light read-more">Read More <i class="mdi mdi-chevron-right"></i></a>
</div>
</div>
<div class="content p-3">
<small class="text-muted p float-right">19th Oct, 19</small>
<small><a href="javascript:void(0)" class="text-primary">Marketing</a></small>
<h4 class="mt-2"><a href="javascript:void(0)" class="text-dark title">Quick guide on business with friends.</a></h4>
<p class="text-muted mt-2">There is now an abundance of readable dummy texts. These are usually used when a text is required purely to fill a space.</p>
<div class="pt-3 mt-3 border-top d-flex">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="img-fluid avatar avatar-ex-sm rounded-pill mr-3 shadow" alt="">
<div class="author mt-2">
<h6 class="mb-0"><a href="javascript:void(0)" class="text-dark name">Lisa Marvel</a></h6>
</div>
</div>
</div>
</div><!--end blog post-->
</div><!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div class="blog-post rounded border">
<div class="blog-img d-block overflow-hidden position-relative">
<img src="https://www.bootdey.com/image/350x280/6495ED/000000" class="img-fluid rounded-top" alt="">
<div class="overlay rounded-top bg-dark"></div>
<div class="post-meta">
<a href="javascript:void(0)" class="text-light d-block text-right like"><i class="mdi mdi-heart"></i> 33</a>
<a href="javascript:void(0)" class="text-light read-more">Read More <i class="mdi mdi-chevron-right"></i></a>
</div>
</div>
<div class="content p-3">
<small class="text-muted p float-right">19th Oct, 19</small>
<small><a href="javascript:void(0)" class="text-primary">Event</a></small>
<h4 class="mt-2"><a href="javascript:void(0)" class="text-dark title">Become more money-minded</a></h4>
<p class="text-muted mt-2">There is now an abundance of readable dummy texts. These are usually used when a text is required purely to fill a space.</p>
<div class="pt-3 mt-3 border-top d-flex">
<img src="https://bootdey.com/img/Content/avatar/avatar6.png" class="img-fluid avatar avatar-ex-sm rounded-pill mr-3 shadow" alt="">
<div class="author mt-2">
<h6 class="mb-0"><a href="javascript:void(0)" class="text-dark name">Joya Aafri</a></h6>
</div>
</div>
</div>
</div><!--end blog post-->
</div><!--end col-->
<div class="col-lg-4 col-md-6 mt-4 pt-2">
<div class="blog-post rounded border">
<div class="blog-img d-block overflow-hidden position-relative">
<img src="https://www.bootdey.com/image/350x280/FF1493/000000" class="img-fluid rounded-top" alt="">
<div class="overlay rounded-top bg-dark"></div>
<div class="post-meta">
<a href="javascript:void(0)" class="text-light d-block text-right like"><i class="mdi mdi-heart"></i> 33</a>
<a href="javascript:void(0)" class="text-light read-more">Read More <i class="mdi mdi-chevron-right"></i></a>
</div>
</div>
<div class="content p-3">
<small class="text-muted p float-right">19th Oct, 19</small>
<small><a href="javascript:void(0)" class="text-primary">Software</a></small>
<h4 class="mt-2"><a href="javascript:void(0)" class="text-dark title">Quick guide on business with friends.</a></h4>
<p class="text-muted mt-2">There is now an abundance of readable dummy texts. These are usually used when a text is required purely to fill a space.</p>
<div class="pt-3 mt-3 border-top d-flex">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="img-fluid avatar avatar-ex-sm rounded-pill mr-3 shadow" alt="">
<div class="author mt-2">
<h6 class="mb-0"><a href="javascript:void(0)" class="text-dark name">Martin Sobhe</a></h6>
</div>
</div>
</div>
</div><!--end blog post-->
</div><!--end col-->
</div><!--end row-->
</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 4.5.0 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;
background:#f5f5f5;
}
.blog-post {
-webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
.blog-post .blog-img .overlay,
.blog-post .blog-img .post-meta {
position: absolute;
opacity: 0;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.blog-post .blog-img .overlay {
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.blog-post .blog-img .post-meta {
bottom: 5%;
right: 5%;
z-index: 1;
}
.blog-post .blog-img .post-meta .read-more:hover {
color: #6dc77a !important;
}
.blog-post .content h1, .blog-post .content h2, .blog-post .content h3, .blog-post .content h4, .blog-post .content h5, .blog-post .content h6 {
line-height: 1.2;
}
.blog-post .content .title {
font-size: 18px;
}
.blog-post .content .title:hover {
color: #6dc77a !important;
}
.blog-post .content .author .name:hover {
color: #6dc77a !important;
}
.blog-post:hover {
-webkit-transform: translateY(-7px);
transform: translateY(-7px);
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.blog-post:hover .blog-img .overlay {
opacity: 0.65;
}
.blog-post:hover .blog-img .post-meta {
opacity: 1;
}
.blog-post .post-meta .like i,
.profile-post .like i {
-webkit-text-stroke: 2px #dd2427;
-webkit-text-fill-color: transparent;
}
.blog-post .post-meta .like:active i, .blog-post .post-meta .like:focus i,
.profile-post .like:active i,
.profile-post .like:focus i {
-webkit-text-stroke: 0px #dd2427;
-webkit-text-fill-color: #dd2427;
}
.avatar.avatar-ex-sm {
height: 36px;
}
.shadow {
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
}
.text-muted {
color: #8492a6 !important;
}
.para-desc {
max-width: 600px;
}
.text-muted {
color: #8492a6 !important;
}
.section-title .title {
letter-spacing: 0.5px;
font-size: 30px;
}
About this bootstrap example/template
This example/template, Latest Blog and News, was published on Aug 17th 2020, 16:13 by Bootdey Admin and it is free.
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 9.5K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 4.5.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.5.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