HTML code
Clean, semantic HTML that powers this Bootstrap 5.0.1 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<div class="container">
<div class="row">
<div class="col-lg-12 layout-spacing">
<div class="statbox widget box box-shadow">
<div class="widget-header">
<div class="row">
<div class="col-xl-12 col-md-12 col-sm-12 col-12">
<h4 class="pb-0">Stories</h4>
</div>
</div>
</div>
<div class="widget-content widget-content-area">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div id="content_1" class="tabcontent story-area">
<div class="story-container-1">
<div class="single-create-story">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="single-create-story-bg">
<div class="create-story-author">
<i class="fa fa-plus-circle fa-2x text-info"></i>
<p>Create a story</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png">
<p>John</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar3.png">
<p>Mike</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar4.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar4.png">
<p>Lisa</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar5.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar5.png">
<p>William</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar6.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar6.png">
<p>Jonthy</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar7.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar7.png">
<p>Steve</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar8.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar8.png">
<p>Jenni</p>
</div>
</div>
<div class="single-story">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="single-story-bg">
<div class="story-author">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png">
<p>Sagarika</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>CSS code
Scoped CSS that styles the component. Paste it after Bootstrap 5.0.1 to keep the design, spacing, and responsiveness consistent.
Downloadbody{
background:#eee;
margin-top:20px;
}
.widget {
padding: 0;
margin-top: 0;
margin-bottom: 0;
border-radius: 6px;
-webkit-box-shadow: 0 4px 6px 0 rgb(85 85 85 / 8%), 0 1px 20px 0 rgb(0 0 0 / 7%), 0px 1px 11px 0px rgb(0 0 0 / 7%);
-moz-box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
box-shadow: 0 4px 6px 0 rgb(85 85 85 / 8%), 0 1px 20px 0 rgb(0 0 0 / 7%), 0px 1px 11px 0px rgb(0 0 0 / 7%);
}
.widget.box .widget-header {
background: #fff;
padding: 0px 8px 0px;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.widget .widget-header {
border-bottom: 0px solid #f1f2f3;
}
.widget.box .widget-header {
background: #fff;
padding: 0px 8px 0px;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.widget .widget-header {
border-bottom: 0px solid #f1f2f3;
}
.widget .widget-header:after {
clear: both;
}
.widget .widget-header:before, .widget .widget-header:after {
display: table;
content: "";
line-height: 0;
}
.widget-content-area {
padding: 20px;
position: relative;
background-color: #fff;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.story-container-1 {
display: flex;
align-items: center;
justify-content: flex-start;
}
.story-container-1 .single-create-story {
height: 175px;
width: 110px;
border-radius: 10px;
overflow: hidden;
position: relative;
margin-right: 10px;
margin-bottom: 10px;
background: #e4e4e4;
text-align: center;
}
img.single-create-story-bg {
width: 100%;
height: 120px;
object-fit: cover;
}
.create-story-author img {
height: 40px;
width: 40px;
margin-top: -20px;
padding: 4px;
background: #e4e4e4;
border-radius: 50%;
}
.story-container-1 .single-story {
height: 175px;
width: 110px;
border-radius: 10px;
overflow: hidden;
position: relative;
margin-right: 10px;
margin-bottom: 10px;
}
.story-container-1 .single-story::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background-image: linear-gradient(rgb(255 0 0 / 0%), black);
}
img.single-story-bg {
width: 100%;
height: 100%;
object-fit: cover;
}
.story-container-1 .story-author {
position: absolute;
top: 50%;
left: 0px;
transform: translateY(-50%);
right: 0px;
text-align: center;
z-index: 99;
cursor: pointer;
}
.story-author img {
height: 60px;
width: 60px;
border-radius: 50%;
border: 1px solid white;
padding: 4px;
}
.story-container-1 .story-author p {
color: #fff;
width: 100%;
margin: 5px 0px 0px 0px;
font-weight: 600;
font-size: 12px;
}
.create-story-author p {
margin: 0px;
font-size: 13px;
font-weight: 500;
}
FAQ
How do I use this snippet?
Include Bootstrap 5.0.1, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.
Can I use it in commercial projects?
Yes. It’s free for personal and commercial work; check the snippets license for details.
Is it responsive?
Yes. It inherits the responsive grid and components from Bootstrap 5.0.1.
About this bootstrap example/template
This free Bootstrap 5.0.1 snippet, stories, was published on Jun 6th 2021, 19:33 by Bootdey Admin.
Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.
Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.
Already trusted in 13.3K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.
Bootstrap 5.0.1
<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 5.0.1 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