Bootstrap snippet and html example. Works contacts

Bootstrap 3.3.6 snippet "Works contacts" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: contacts

HTML code

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

<div class="container bootstrap snippets bootdeys">
<div class="center-heading">
    <h2>Contacts</h2>
    <span class="center-line"></span>
</div> 

<div class="row">
    <div class="col-md-10 col-md-offset-1">
        <div class="row">
            <div class="col-sm-4 margin40">
                <div class="item-img-wrap ">
                    <img src="https://bootdey.com/img/Content/avatar/avatar6.png" class="img-responsive" alt="workimg">
                    <div class="item-img-overlay">
                        <a href="#">
                            <span></span>
                        </a>
                    </div>
                </div> 
                <div class="work-desc">
                    <h3><a> Nancy</a></h3>
                    <span>Ceo, Assan inc.</span>
                </div><!--work desc-->
            </div><!--speakers col end-->
            <div class="col-sm-4 margin40">
                <div class="item-img-wrap ">
                    <img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="img-responsive" alt="workimg">
                    <div class="item-img-overlay">
                        <a href="#">
                            <span></span>
                        </a>
                    </div>
                </div> 
                <div class="work-desc">
                    <h3><a> Nancy</a></h3>
                    <span>Ceo, Assan inc.</span>
                </div><!--work desc-->
            </div><!--speakers col end-->
            <div class="col-sm-4 margin40">
                <div class="item-img-wrap ">
                    <img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="img-responsive" alt="workimg">
                    <div class="item-img-overlay">
                        <a href="#">
                            <span></span>
                        </a>
                    </div>
                </div> 
                <div class="work-desc">
                    <h3><a> Smith</a></h3>
                    <span>Manager, Assan inc.</span>
                </div><!--work desc-->
            </div><!--speakers col end-->
        </div><!--speakers row end-->
        <div class="row">
            <div class="col-sm-4 margin40">
                <div class="item-img-wrap ">
                    <img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="img-responsive" alt="workimg">
                    <div class="item-img-overlay">
                        <a href="#">
                            <span></span>
                        </a>
                    </div>
                </div> 
                <div class="work-desc">
                    <h3><a> Nancy</a></h3>
                    <span>Ceo, Assan inc.</span>
                </div><!--work desc-->
            </div><!--speakers col end-->
            <div class="col-sm-4 margin40">
                <div class="item-img-wrap ">
                    <img src="https://bootdey.com/img/Content/avatar/avatar4.png" class="img-responsive" alt="workimg">
                    <div class="item-img-overlay">
                        <a href="#">
                            <span></span>
                        </a>
                    </div>
                </div> 
                <div class="work-desc">
                    <h3><a> Nancy</a></h3>
                    <span>Ceo, Assan inc.</span>
                </div><!--work desc-->
            </div><!--speakers col end-->
            <div class="col-sm-4 margin40">
                <div class="item-img-wrap ">
                    <img src="https://bootdey.com/img/Content/avatar/avatar5.png" class="img-responsive" alt="workimg">
                    <div class="item-img-overlay">
                        <a href="#">
                            <span></span>
                        </a>
                    </div>
                </div> 
                <div class="work-desc">
                    <h3><a> Smith</a></h3>
                    <span>Manager, Assan inc.</span>
                </div><!--work desc-->
            </div><!--speakers col end-->
        </div><!--speakers row end-->
    </div>
</div>
</div>

CSS code

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

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

a {
    color: #333;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

a:hover, a:focus {
    color: #32c5d2;
    text-decoration: none;
}

.margin40 {
    margin-bottom: 40px;
}

/************************image hover effect*******************/
.item-img-wrap {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.item-img-wrap img {
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  width: 100%;
}

.item-img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.item-img-overlay span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(http://bootstraplovers.com/templates/assan-2.2/main-template/img/plus.png) no-repeat center center rgba(0, 0, 0, 0.7);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -moz-transition: opacity 250ms linear;
  -o-transition: opacity 250ms linear;
  -webkit-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
}

.item-img-wrap:hover .item-img-overlay span {
  opacity: 1;
}

.item-img-wrap:hover img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.work-desc {
  width: 100%;
  padding: 10px 10px;
  background: #FFF;
  border-top: none;
  position: relative;
}

.work-desc:before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  margin-left: 20px;
  width: 8px;
  height: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 100;
}

.work-desc h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}


/*******section heading**********/
.center-heading {
  text-align: center;
  margin-bottom: 40px;
}

.center-heading h2 {
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  font-size: 25px;
}

.center-heading p {
  font-size: 20px;
  line-height: 35px;
}

.center-heading h2 strong {
  font-weight: 700;
}

.center-line {
  display: inline-block;
  width: 70px;
  height: 1px;
  border-top: 1px solid #bbb;
  /* border-bottom: 1px solid $skincolor; */
  margin: auto;
}

.center-heading p {
  margin-top: 10px;
}

.overflow-hidden {
  overflow: hidden;
}

Similar snippets

Bootstrap example and template. Contacts Grid Cards

Contacts Grid Cards

Bootstrap example and template. Contact List

Contact List

Bootstrap example and template. crm clients

crm clients

Bootstrap example and template. bs4 beta friend list

bs4 beta friend list

Bootstrap example and template. Site login page

Site login page

Bootstrap example and template. Count Menu (no responsive)

Count Menu (no responsive)

Bootstrap example and template. DeyNote like login

DeyNote like login

Bootstrap example and template. login box

login box

FAQ

How do I use this snippet?

Include Bootstrap 3.3.6, 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 3.3.6.

Bootstrap example and template. Works contacts

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

Bootstrap 3.3.6

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.3.6 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