Bootstrap snippet and html example. bs4 recent activities panel

Bootstrap 4.1.1 snippet "bs4 recent activities panel" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: panel,card,activities,calendar,date

HTML code

Clean, semantic HTML that powers this Bootstrap 4.1.1 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
    <div class="row">   
        <div class="col-lg-5">
          <div class="recent-activities card">
            <div class="card-close">
              <div class="dropdown">
                <button type="button" id="closeCard8" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"><i class="fa fa-ellipsis-v"></i></button>
                <div aria-labelledby="closeCard8" class="dropdown-menu dropdown-menu-right has-shadow"><a href="#" class="dropdown-item remove"> <i class="fa fa-times"></i>Close</a><a href="#" class="dropdown-item edit"> <i class="fa fa-gear"></i>Edit</a></div>
              </div>
            </div>
            <div class="card-header">
              <h3 class="h4">Recent Activities</h3>
            </div>
            <div class="card-body no-padding">
              <div class="item">
                <div class="row">
                  <div class="col-4 date-holder text-right">
                    <div class="icon"><i class="fa fa-clock-o"></i></div>
                    <div class="date"> <span>6:00 am</span><br><span class="text-info">6 hours ago</span></div>
                  </div>
                  <div class="col-8 content">
                    <h5>Meeting</h5>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.</p>
                  </div>
                </div>
              </div>
              <div class="item">
                <div class="row">
                  <div class="col-4 date-holder text-right">
                    <div class="icon"><i class="fa fa-clock-o"></i></div>
                    <div class="date"> <span>6:00 am</span><br><span class="text-info">6 hours ago</span></div>
                  </div>
                  <div class="col-8 content">
                    <h5>Meeting</h5>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.</p>
                  </div>
                </div>
              </div>
              <div class="item">
                <div class="row">
                  <div class="col-4 date-holder text-right">
                    <div class="icon"><i class="fa fa-clock-o"></i></div>
                    <div class="date"> <span>6:00 am</span><br><span class="text-info">6 hours ago</span></div>
                  </div>
                  <div class="col-8 content">
                    <h5>Meeting</h5>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.</p>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="col-lg-5">
          <div class="recent-activities card">
            <div class="card-close">
              <div class="dropdown">
                <button type="button" id="closeCard8" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"><i class="fa fa-ellipsis-v"></i></button>
                <div aria-labelledby="closeCard8" class="dropdown-menu dropdown-menu-right has-shadow"><a href="#" class="dropdown-item remove"> <i class="fa fa-times"></i>Close</a><a href="#" class="dropdown-item edit"> <i class="fa fa-gear"></i>Edit</a></div>
              </div>
            </div>
            <div class="card-header">
              <h3 class="h4">Recent Activities</h3>
            </div>
            <div class="card-body no-padding">
              <div class="item">
                <div class="row">
                  <div class="col-4 date-holder text-right">
                    <div class="icon"><i class="fa fa-clock-o"></i></div>
                    <div class="date"> <span>6:00 am</span><br><span class="text-info">6 hours ago</span></div>
                  </div>
                  <div class="col-8 content">
                    <h5>Meeting</h5>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.</p>
                  </div>
                </div>
              </div>
              <div class="item">
                <div class="row">
                  <div class="col-4 date-holder text-right">
                    <div class="icon"><i class="fa fa-clock-o"></i></div>
                    <div class="date"> <span>6:00 am</span><br><span class="text-info">6 hours ago</span></div>
                  </div>
                  <div class="col-8 content">
                    <h5>Meeting</h5>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.</p>
                  </div>
                </div>
              </div>
              <div class="item">
                <div class="row">
                  <div class="col-4 date-holder text-right">
                    <div class="icon"><i class="fa fa-clock-o"></i></div>
                    <div class="date"> <span>6:00 am</span><br><span class="text-info">6 hours ago</span></div>
                  </div>
                  <div class="col-8 content">
                    <h5>Meeting</h5>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud.</p>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
    </div>
</div>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 4.1.1 to keep the design, spacing, and responsiveness consistent.

body{
    margin-top:20px;
    background:#eee;
}

.recent-activities .item {
    padding: 0 15px;
    border-bottom: 1px solid #eee
}

.recent-activities .item div[class*='col-'] {
    padding: 15px
}

.recent-activities h5 {
    font-weight: 400;
    color: #333
}

.recent-activities p {
    font-size: 0.75em;
    color: #999
}

.recent-activities .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #f5f5f5;
    text-align: center;
    display: inline-block
}

.recent-activities .date {
    font-size: 0.75em;
    color: #999;
    padding: 10px
}

.recent-activities .date-holder {
    padding: 0 !important;
    border-right: 1px solid #eee
}


.card-close {
    position: absolute;
    top: 15px;
    right: 15px
}

.card-close .dropdown-toggle {
    color: #999;
    background: none;
    border: none
}

.card-close .dropdown-toggle:after {
    display: none
}

.card-close .dropdown-menu {
    border: none;
    min-width: auto;
    font-size: 0.9em;
    border-radius: 0;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -2px -2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -2px -2px 3px rgba(0, 0, 0, 0.1)
}

.card-close .dropdown-menu a {
    color: #999 !important
}

.card-close .dropdown-menu a:hover {
    background: #796AEE;
    color: #fff !important
}

.card-close .dropdown-menu a i {
    margin-right: 10px;
    -webkit-transition: none;
    transition: none
}

Similar snippets

Bootstrap example and template. Most Recent Signups panel

Most Recent Signups panel

Bootstrap example and template. social network wall activities

social network wall activities

Bootstrap example and template. friends panel list

friends panel list

Bootstrap example and template. Profile card with header

Profile card with header

Bootstrap example and template. box colored

box colored

Bootstrap example and template. Small Log in box in panel

Small Log in box in panel

Bootstrap example and template. Profile overview and edit

Profile overview and edit

Bootstrap example and template. Team member

Team member

FAQ

How do I use this snippet?

Include Bootstrap 4.1.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 4.1.1.

Bootstrap example and template. bs4 recent activities panel

About this bootstrap example/template

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 11.8K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 4.1.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 4.1.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