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 5.1.3 included, to get the result that you can see in the preview selection
Download<section>
<div class="container">
<div class="section-heading wow fadeIn">
<h2>Our Workshop History</h2>
<div class="heading-separator"></div>
</div>
<div class="row" >
<div class="history-wrapper">
<div class="title-wrap text-center one-of-two">
<h2 class="h1 text-secondary mb-0 text-uppercase">Bootdey.com</h2>
<p class="fs-3 font-weight-500">Bootstrap snippet</p>
</div>
<div class="timeline-box one-of-two">
<img class="mb-1-6 rounded" src="https://www.bootdey.com/image/280x280/87CEFA/000000" alt="...">
<div class="content">
<h3 class="h4 mb-2 mb-md-3">Start with small space</h3>
<p class="mb-0">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum</p>
</div>
<div class="year">1995</div>
</div>
<div class="timeline-box one-of-two">
<img class="mb-1-6 rounded" src="https://www.bootdey.com/image/280x280/FF7F50/000000" alt="...">
<div class="content">
<h3 class="h4 mb-2 mb-md-3">Increase employee by 6 members</h3>
<p class="mb-0">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum</p>
</div>
<div class="year">2003</div>
</div>
<div class="timeline-box one-of-two">
<img class="mb-1-6 rounded" src="https://www.bootdey.com/image/280x280/008B8B/000000" alt="...">
<div class="content">
<h3 class="h4 mb-2 mb-md-3">We win the national awards</h3>
<p class="mb-0">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum</p>
</div>
<div class="year">2018</div>
</div>
<div class="timeline-box one-of-two">
<img class="mb-1-6 rounded" src="https://www.bootdey.com/image/280x280/00CED1/000000" alt="...">
<div class="content">
<h3 class="h4 mb-2 mb-md-3">Branches open in International</h3>
<p class="mb-0">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum</p>
</div>
<div class="year">2021</div>
</div>
</div>
</div>
</div>
</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 5.1.3 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;}
.history-wrapper {
position: relative;
padding: 50px 0 50px;
}
.history-wrapper:after {
content: "";
width: 3px;
height: 100%;
background: #ededed;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 0;
}
.history-wrapper .title-wrap {
opacity: 0.2;
padding: 100px 0 0 45px;
}
.history-wrapper .timeline-box {
position: relative;
}
.one-of-two {
width: 50%;
float: left;
}
.history-wrapper .timeline-box:not(:last-child) {
margin-bottom: 140px;
}
.timeline-box:nth-child(2n) {
padding: 0 0 0 140px;
}
.history-wrapper .timeline-box:nth-child(2n) {
margin-bottom: 140px;
}
.history-wrapper .timeline-box:nth-child(2n + 1) {
margin-top: -24%;
text-align: right;
}
.timeline-box:nth-child(2n + 1) {
padding: 0 140px 0 0;
}
.year {
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
background: #fff;
top: 30%;
color: #3b3b3b;
transform: translateY(-50%);
border: 1px solid #dbdbdb;
line-height: 100px;
text-align: center;
font-size: 24px;
font-weight: 700;
}
.timeline-box:nth-child(2n) .year {
left: 25px;
}
.timeline-box:nth-child(2n + 1) .year {
right: 32px;
}
.year:before {
content: "";
width: 15px;
height: 15px;
border-left: 1px solid #dbdbdb;
border-bottom: 1px solid #dbdbdb;
background: #ffffff;
position: absolute;
top: 50%;
margin-top: -7.5px;
}
.timeline-box:nth-child(2n) .year:before {
left: -8px;
transform: rotate(45deg);
}
.timeline-box:nth-child(2n + 1) .year:before {
right: -8px;
transform: rotate(-135deg);
}
.timeline-box:after {
content: "";
width: 3px;
height: 0;
background: #ffa200;
position: absolute;
top: 30%;
transform: translateY(-50%);
z-index: 1;
transition: all 0.3s ease-in-out;
}
.timeline-box:nth-child(2n):after {
left: -1.5px;
}
.timeline-box:nth-child(2n + 1):after {
right: -1.5px;
}
.timeline-box:hover:after {
height: 97px;
}
.timeline-box:before {
content: "";
width: 21px;
height: 21px;
border-radius: 50%;
border: 5px solid #ededed;
position: absolute;
background: #fff;
z-index: 2;
top: 30%;
transform: translateY(-50%);
transition: all 0.3s ease-in-out;
}
.timeline-box:nth-child(2n):before {
left: -10.5px;
}
.timeline-box:nth-child(2n + 1):before {
right: -10.5px;
}
.timeline-box:hover:before {
border: 5px solid #ffa200;
}
@media screen and (max-width: 1199px) {
.year {
width: 90px;
height: 90px;
line-height: 90px;
font-size: 22px;
}
}
@media screen and (max-width: 991px) {
.history-wrapper {
padding: 30px 0 30px;
}
.history-wrapper .title-wrap {
padding: 0;
margin-bottom: 30px;
}
.title-wrap.one-of-two {
width: 100%;
}
.history-wrapper:after {
left: 0;
}
.history-wrapper .timeline-box:nth-child(2n) {
padding: 0 0 0 140px;
}
.history-wrapper .timeline-box:not(:last-child) {
margin-bottom: 40px;
}
.timeline-box.one-of-two,
.timeline-box .img img {
width: 100%;
}
.history-wrapper .timeline-box:nth-child(2n + 1) {
margin-top: 0;
text-align: left;
}
.timeline-box:nth-child(2n + 1) .year {
left: 32px;
}
.timeline-box:nth-child(2n + 1):before {
left: -10.5px;
}
.timeline-box:nth-child(2n + 1) .year:before {
left: -8px;
transform: rotate(45deg);
}
.timeline-box:nth-child(2n + 1):after {
left: -1.5px;
}
.history-wrapper .timeline-box:nth-child(2n + 1) {
margin-top: 0;
text-align: left;
}
.timeline-box:nth-child(2n + 1) {
padding: 0 0 0 140px;
}
}
@media screen and (max-width: 767px) {
.history-wrapper:after,
.year,
.timeline-box:before {
display: none;
}
.history-wrapper {
padding: 0;
}
.history-wrapper .timeline-box:nth-child(2n),
.history-wrapper .timeline-box:nth-child(2n + 1) {
padding: 0 15px;
}
.history-wrapper .timeline-box:not(:last-child) {
margin-bottom: 30px;
}
.timeline-box .content {
text-align: center;
}
.timeline-box:nth-child(2n):after,
.timeline-box:nth-child(2n + 1):after {
display: none;
}
}
.mb-1-6, .my-1-6 {
margin-bottom: 1.6rem;
}
About this bootstrap example/template
This example/template, our history timeline, was published on Mar 3rd 2022, 08:58 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 8.4K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 5.1.3
<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.1.3 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