Bootstrap snippet and html example. bs4 simple team member

Bootstrap 4.4.1 snippet "bs4 simple team member" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: team,member

HTML code

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

<div class="container">
    <div class="row">

        <div class="col-md-6">
            <div class="d-inline-block w-50 pull-left">
                <div class="team-member style-1">
                    <div class="member-photo">
                        <img class="img-responsive" src="https://bootdey.com/img/Content/avatar/avatar1.png">
                    </div>
                </div>
            </div>

            <div class="d-inline-block w-50 pl-40 pull-left">
                <h2 class="section-title fs-24 fw-4 mt-40">
                              Felix Harvey
                           </h2>
                <p class="primary-color">
                    Programmer
                </p>

                <div class="exp-separator">
                    <div class="exp-separator-inner">
                    </div>
                </div>

                <p class="lh-26 mb-30">
                    Intrinsicly seize ubiquitous web-readiness and vertical initiatives. Collaboratively e-enable equity invested infomediaries.
                </p>

                <p class="clearfix mb-0">
                    <i class="fa fa-phone mr-5 o-4"></i> <strong> +09 (123) 456-789</strong>
                </p>

                <p class="clearfix">
                    <i class="fa fa-envelope-o mr-10 o-4"></i><a class="b-link fw-5" href="mailto:[email protected]">[email protected]</a>
                </p>
            </div>

        </div>

        <div class="col-md-6">
            <div class="d-inline-block w-50 pull-left">
                <div class="team-member style-1">
                    <div class="member-photo">
                        <img class="img-responsive" src="https://bootdey.com/img/Content/avatar/avatar1.png">
                    </div>
                </div>
            </div>

            <div class="d-inline-block w-50 pl-40 pull-left">
                <h2 class="section-title fs-24 fw-4 mt-40">
                              Lora Flores
                           </h2>
                <p class="primary-color">
                    Web Designer
                </p>

                <div class="exp-separator">
                    <div class="exp-separator-inner">
                    </div>
                </div>

                <p class="lh-26 mb-30">
                    Intrinsicly seize ubiquitous web-readiness and vertical initiatives. Collaboratively e-enable equity invested infomediaries.
                </p>

                <p class="clearfix mb-0">
                    <i class="fa fa-phone mr-5 o-4"></i> <strong> +09 (123) 456-789</strong>
                </p>

                <p class="clearfix">
                    <i class="fa fa-envelope-o mr-10 o-4"></i><a class="b-link fw-5" href="mailto:[email protected]">[email protected]</a>
                </p>
            </div>

        </div>

    </div>
    <hr class="invisible big">
    <div class="row text-center">
        <div class="col-md-12">
            <h2 class="section-title">Support Team</h2>
            <div class="horizontal-break"></div>
            <hr class="invisible">
        </div>
    </div>
    <div class="row">

        <div class="col-md-6">

            <div class="d-inline-block w-50 pr-40 pull-left">
                <h2 class="section-title fs-24 fw-4 mt-40">
                              Rose Amber
                           </h2>
                <p class="primary-color">
                    User Woice
                </p>

                <div class="exp-separator">
                    <div class="exp-separator-inner">
                    </div>
                </div>

                <p class="lh-26 mb-30">
                    Intrinsicly seize ubiquitous web-readiness and vertical initiatives. Collaboratively e-enable equity invested infomediaries.
                </p>

                <p class="clearfix mb-0">
                    <i class="fa fa-phone mr-5 o-4"></i> <strong> +09 (123) 456-789</strong>
                </p>

                <p class="clearfix">
                    <i class="fa fa-envelope-o mr-10 o-4"></i><a class="b-link fw-5" href="mailto:[email protected]">[email protected]</a>
                </p>
            </div>

            <div class="d-inline-block w-50 pull-left">
                <div class="team-member style-1">
                    <div class="member-photo">
                        <img class="img-responsive" src="https://bootdey.com/img/Content/avatar/avatar6.png">
                    </div>
                </div>
            </div>

        </div>

        <div class="col-md-6">

            <div class="d-inline-block w-50 pr-40 pull-left">
                <h2 class="section-title fs-24 fw-4 mt-40">
                              Jessi J. Albert
                           </h2>
                <p class="primary-color">
                    Customer Support
                </p>

                <div class="exp-separator">
                    <div class="exp-separator-inner">
                    </div>
                </div>

                <p class="lh-26 mb-30">
                    Intrinsicly seize ubiquitous web-readiness and vertical initiatives. Collaboratively e-enable equity invested infomediaries.
                </p>

                <p class="clearfix mb-0">
                    <i class="fa fa-phone mr-5 o-4"></i> <strong> +09 (123) 456-789</strong>
                </p>

                <p class="clearfix">
                    <i class="fa fa-envelope-o mr-10 o-4"></i><a class="b-link fw-5" href="mailto:[email protected]">[email protected]</a>
                </p>
            </div>

            <div class="d-inline-block w-50 pull-left">
                <div class="team-member style-1">
                    <div class="member-photo">
                        <img class="img-responsive" src="https://bootdey.com/img/Content/avatar/avatar1.png">
                    </div>
                </div>
            </div>

        </div>

    </div>
</div>

CSS code

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

body{margin-top:20px;}

/* --------------------------------------------
    TEAM MEMBER
-------------------------------------------- */

.team-member {
    margin: 10px 0;
}

.team-member .member-name .name {
    font-size: 18px;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0px;
    font-weight: 600;
}

.member-photo {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
}

.member-photo.member-photo-shadow {
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.team-member .member-position { 
    font-style: italic;
    font-size: 14px;
        color: #999;
}

.team-member .member-social ul {
    margin: 5px 0;
}

.team-member .member-social {
    border: 7px solid rgba(0,0,0,0.1);
    position: absolute;
    font-size: 19px;
    background: #fff;
    background: rgba(255,255,255,0.7);
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.team-member .member-social-inner {
    width: 100%;
    padding: 0 5%;
    position: absolute;
    top: 50%;
    margin-top: -26px;
    left: 0;
}

.team-member .member-social a {
    text-decoration: none;
    position: relative;
    border-radius: 30px;
    padding: 0 9px;
    background: #fff;
    margin: 3px;
    display: inline-block;
    height: 39px;
    line-height: 41px;
    width: 39px;
}

.team-member .member-social .list-inline > li {
    padding-right: 0;
    padding-left: 0;
}

.team-member .member-photo:hover .member-social {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.team-member.style-1 .member-name .name {
    margin-top: 3px;
}

.team-member.style-1 .member-position {
    margin-top: 20px;
}

.team-member .member-desc {
margin-top: 10px;
    padding-top: 10px;
}

.team-member.img-circle {
    text-align: center;
}

.team-member.img-circle .member-photo {
    border-radius: 50%;
}

.team-member.img-circle .member-social {
    border: 7px solid rgba(0,0,0,0.1);
    border-radius: 50%;
}

.team-member.img-bordered .member-photo {
    border: 2px solid rgba(207,215,223,.25);
}



/* Version 2 */
.team-member.v2 {
    position: relative;
}

.team-member.v2 .member-name .name {
    margin-top: 0px;
    font-size: 16px;
    /*font-weight: 600;*/
}

.team-member.v2 .member-position {
    font-style: normal;
    font-size: 14px;
    opacity: 0.8;
}

.team-member.v2 .member-info {
    position: relative;
    background: #FFF;
    padding: 20px 25px;
}

.team-member.v2 .member-info .share {
    position: absolute;
    bottom: calc(100% - 22px);
    right: 15px;
    width: 42px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: ease height 300ms;
    -moz-transition: ease height 300ms;
    transition: ease height 300ms;
}

.team-member.v2 .member-info .share:hover .share-icons {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.team-member.v2 .member-info .share:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FFF;
    width: 100%;
    height: 22px;
}

.team-member.v2 .member-info .share .share-icons {
    background-color: white;
    text-align: center;
    padding-bottom: 42px;
    border-radius: 50px;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: ease transform 300ms;
    -moz-transition: ease transform 300ms;
    transition: ease transform 300ms;
}

.team-member.v2 .member-info .share i {
    display: block;
    color: #FFF;
    padding: 15px;
    opacity: 0.5;
    -webkit-transition: ease opacity 300ms;
    -moz-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
}

.team-member.v2 .member-info .share i.fa-share-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50px;
    opacity: 1;
    z-index: 1;
}

.team-member.v2 .member-info .share i.fa-facebook {
    color: #4d70a8;
}

.team-member.v2 .member-info .share i.fa-instagram {
    color: #964b00;
}

.team-member.v2 .member-info .share i.fa-linkedin {
    color: #0077b5;
}

.team-member.v2 .member-info .share i:hover {
    opacity: 1;
}

.team-member.v2 .member-photo img {
    -webkit-transition: ease transform 300ms;
    -moz-transition: ease transform 300ms;
    transition: ease transform 300ms;
}

.team-member.v2:hover .member-photo img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-member.v2.img-circle .member-info {
    background: transparent;
}

.team-member.v2.img-circle .member-info .share {
    bottom: calc(140% - 22px);
    right: 12px;
}

.team-member.v2.img-circle .member-info .share:after {
    background: transparent;
}


.exp-separator {
   border-color: #0cb4ce;
   border-top-width: 2px;
   margin-top: 10px;
   margin-bottom: 2px;
   width: 100%;
   max-width: 55px;
   border-top-style: solid;
   height: auto;
   clear: both;
   position: relative;
   z-index: 11;
}

.exp-separator-inner {
   border-color: #0cb4ce;
   opacity: 0.4;
   border-top-width: 2px;
   margin-top: 6px;
   margin-bottom: 35px;
   width: 100%;
   max-width: 30px;
   border-top-style: solid;
   height: auto;
   clear: both;
   position: relative;
   z-index: 11;
}

.pull-left {
    float: left !important;
}
.pr-40 {
    padding-right: 40px !important;
}

FAQ

How do I use this snippet?

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

Bootstrap example and template. bs4 simple team member

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

Bootstrap 4.4.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.4.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