Bootstrap snippet and html example. Event Schedules With Tabs

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: event,calendar,schedule

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

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />

<div class="schedules-area pd-top-110 pd-bottom-120">
        <div class="container">
            <div class="row justify-content-center">
                <div class="col-xl-7 col-lg-8">
                    <div class="section-title text-center">
                        <h2>Event Schedules</h2>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt consectetur ut et dolore magna aliqua.</p>
                    </div>
                </div>
            </div>
            <div class="evt-tab-inner text-center">
                <ul class="nav nav-tabs" id="ex1" role="tablist">
                    <li class="nav-item" role="presentation">
                        <a class="nav-link active" id="ex1-tab-1" data-toggle="pill" href="#ex1-tabs-1" role="tab" aria-selected="true"><span>Day 1</span>23 Jun 2020</a>
                    </li>
                    <li class="nav-item" role="presentation">
                        <a class="nav-link" id="ex1-tab-2" data-toggle="pill" href="#ex1-tabs-2" role="tab" aria-selected="false"><span>Day 2</span>23 Jun 2020</a>
                    </li>
                    <li class="nav-item" role="presentation">
                        <a class="nav-link" id="ex1-tab-3" data-toggle="pill" href="#ex1-tabs-3" role="tab" aria-selected="false"><span>Day 3</span>23 Jun 2020</a>
                    </li>
                </ul>
            </div>
            <div class="tab-content" id="ex1-content">
                <div class="tab-pane fade active show" id="ex1-tabs-1" role="tabpanel">
                    <div class="row">
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner lunch-schedules text-center">
                                <div class="lunch-schedules-inner align-self-center">
                                    <div class="icons">
                                        <img src="https://www.bootdey.com/image/200x200/00FFFF/000000" alt="img">
                                    </div>
                                    <h5>Lunch Break</h5>
                                    <div class="date">
                                        <i class="fa fa-clock-o"></i>
                                        5:00pm -6:30pm
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="tab-pane fade" id="ex1-tabs-2" role="tabpanel">
                    <div class="row">
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner lunch-schedules text-center">
                                <div class="lunch-schedules-inner align-self-center">
                                    <div class="icons">
                                        <img src="https://www.bootdey.com/image/200x200/00FFFF/000000" alt="img">
                                    </div>
                                    <h5>Lunch Break</h5>
                                    <div class="date">
                                        <i class="fa fa-clock-o"></i>
                                        5:00pm -6:30pm
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>                   
                </div>
                <div class="tab-pane fade" id="ex1-tabs-3" role="tabpanel">
                    <div class="row">
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner lunch-schedules text-center">
                                <div class="lunch-schedules-inner align-self-center">
                                    <div class="icons">
                                        <img src="https://www.bootdey.com/image/200x200/FF1493/000000" alt="img">
                                    </div>
                                    <h5>Lunch Break</h5>
                                    <div class="date">
                                        <i class="fa fa-clock-o"></i>
                                        5:00pm -6:30pm
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-schedules-inner">
                                <div class="date">
                                    <i class="fa fa-clock-o"></i>
                                    5:00pm -6:30pm
                                </div>
                                <h5>Improving the quality of the management.</h5>
                                <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua</p>
                                <div class="media">
                                    <div class="media-left">
                                        <img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="img">
                                    </div>
                                    <div class="media-body align-self-center">
                                        <h6>Dr. Ariful Islam Abid</h6>
                                        <p>Ceo of AIA software agency, USA.</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </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 4.5.0 included, to get the result that you can see in the preview selection

body {
    padding-top:20px;
    background:#f9f9f9;
}

.evt-tab-inner {
  margin-bottom: 80px;
}
.evt-tab-inner ul {
  margin: 0;
  padding: 0;
  border: 0 !important;
}
.evt-tab-inner ul li {
  text-align: center;
  display: contents;
}
.evt-tab-inner ul li a {
  border: 1px solid var(--main-color) !important;
  height: 100px;
  line-height: 100px;
  padding: 0;
  width: 33.33%;
  border-radius: 0 !important;
  font-size: 24px;
  position: relative;
}
.evt-tab-inner ul li a span {
  font-weight: 700;
  margin-right: 25px;
  color: #20202c;
}
.evt-tab-inner ul li a:after {
  content: "";
  position: absolute;
  height: 30px;
  width: 30px;
  background: var(--main-color);
  transform: rotate(45deg);
  left: 50%;
  margin-left: -15px;
  bottom: -16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in;
}
.evt-tab-inner ul li a:hover, .evt-tab-inner ul li a:active, .evt-tab-inner ul li a:focus, .evt-tab-inner ul li a.active {
  background: var(--main-color) !important;
  color: #fff !important;
}
.evt-tab-inner ul li a:hover span, .evt-tab-inner ul li a:active span, .evt-tab-inner ul li a:focus span, .evt-tab-inner ul li a.active span {
  color: #fff;
}
.evt-tab-inner ul li a:hover:after, .evt-tab-inner ul li a:active:after, .evt-tab-inner ul li a:focus:after, .evt-tab-inner ul li a.active:after {
  opacity: 1;
  visibility: visible;
}
.evt-tab-inner.style-two ul li a {
  width: 50%;
}

.single-schedules-inner {
    background-color:#fff;
  box-shadow: 0px 3px 15px 0px rgba(184, 40, 88, 0.08);
  padding: 30px 30px 35px 30px;
  margin-bottom: 30px;
  transition: 0.4s;
  border-radius: 20px;
}
.single-schedules-inner .date {
  color: var(--main-color);
  font-size: 14px;
  margin-bottom: 15px;
}
.single-schedules-inner .date i {
  color: #646e85;
  margin-right: 3px;
}
.single-schedules-inner h5 {
  line-height: 36px;
  margin-bottom: 18px;
}
.single-schedules-inner .icons {
  margin-bottom: 20px;
}
.single-schedules-inner p {
  margin-bottom: 0;
}
.single-schedules-inner .media {
  margin-top: 43px;
}
.single-schedules-inner .media .media-left {
  margin-right: 15px;
}
.single-schedules-inner .media .media-left img {
  height: 60px;
  width: 60px;
  border-radius: 10px;
}
.single-schedules-inner .media .media-body h6 {
  font-weight: 500;
  margin-bottom: 0;
}
.single-schedules-inner .media .media-body p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
}
.single-schedules-inner:hover {
  box-shadow: 0px 6px 30px 0px rgba(184, 40, 88, 0.2);
}
.single-schedules-inner.lunch-schedules {
  height: 93.1%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------- single-schedules-inner 02--------------*/
.single-schedules-inner-two {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.single-schedules-inner-two .schedules-date {
  display: inline-block;
  background: var(--main-color);
  height: 150px;
  width: 150px;
  padding-top: 35px;
  position: absolute;
}
.single-schedules-inner-two .schedules-date .number {
  font-size: 45px;
  font-weight: 700;
  display: block;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
}
.single-schedules-inner-two .schedules-date .text {
  font-size: 24px;
  font-weight: 400;
  display: block;
  color: #fff;
}
.single-schedules-inner-two .media {
  padding-left: 170px;
}
.single-schedules-inner-two .media .media-left {
  margin-right: 20px;
}
.single-schedules-inner-two .media .media-body h4 {
  font-size: 28px;
  font-family: var(--heading-font);
  font-weight: 500;
}
.single-schedules-inner-two .schedules-location h4 {
  font-size: 28px;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*------------- single-schedules-inner 03--------------*/
.schedules-date {
  display: inline-block;
  background: var(--main-color);
  height: 150px;
  width: 150px;
  padding-top: 35px;
  position: absolute;
}
.schedules-date .number {
  font-size: 45px;
  font-weight: 700;
  display: block;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
}
.schedules-date .text {
  font-size: 24px;
  font-weight: 400;
  display: block;
  color: #fff;
}

.event-schedule-3 {
  margin: 0;
  padding: 0;
}
.event-schedule-3 li {
  padding-left: 176px;
  position: relative;
  list-style: none;
}
.event-schedule-3 li:after {
  content: "";
  position: absolute;
  left: 70px;
  top: 140px;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
  height: 100%;
  width: 1px;
  z-index: -2;
}
.event-schedule-3 li:last-child:after {
  display: none;
}
.event-schedule-3 .schedules-date {
  left: 0;
  width: 147px;
  height: 140px;
  background: #FD0156;
}
.event-schedule-3 .schedules-date:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: -10px;
  background: #5E39E8;
  z-index: -1;
}

.single-event-schedule-3 {
  background: #fff;
  padding: 50px;
  margin-bottom: 50px;
  position: relative;
}
.single-event-schedule-3:after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: -20px;
  background: #5E39E8;
  z-index: -1;
}
.single-event-schedule-3 .media-left {
  margin-right: 50px;
}
.single-event-schedule-3 .media-left img {
  border-radius: 20px;
  margin-bottom: 10px;
}
.single-event-schedule-3 .media-left h6 {
  margin-bottom: 0;
  color: #eee;
}
.single-event-schedule-3 .media-left p {
  font-size: 12px;
  margin-bottom: 0;
  color: #eee;
}
.single-event-schedule-3 .media-body h4 {
  margin-bottom: 5px;
  color: #eee;
}
.single-event-schedule-3 .media-body p {
  color: #eee;
}
.single-event-schedule-3 .media-body .time {
  margin-bottom: 0;
  color: #eee;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #20B2AA !important;
    border-color: #dee2e6 #dee2e6 #fff;
}
.evt-tab-inner ul li a:hover, .evt-tab-inner ul li a:active, .evt-tab-inner ul li a:focus, .evt-tab-inner ul li a.active {
    background: #eee !important;
    color: #fff !important;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.evt-tab-inner ul li a {
    border: 1px solid var(--main-color) !important;
    height: 100px;
    line-height: 100px;
    padding: 0;
    width: 33.33%;
    border-radius: 0 !important;
    font-size: 24px;
    position: relative;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}

Similar snippets

Bootstrap example and template. calendar schedule table

calendar schedule table

Bootstrap example and template. time table

time table

Bootstrap example and template. schedule and agenda

schedule and agenda

Bootstrap example and template. Event On Trend

Event On Trend

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. profile edit data and skills

profile edit data and skills

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. Shop product list

Shop product list

Bootstrap example and template. Event Schedules With Tabs

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 4.0K 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