Bootstrap snippet and html example. image gellery

Bootstrap 3.3.6 snippet "image gellery" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: gallery,images

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.

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<section class="content-item" id="gallery">
    <div class="container">
        <div class="content-headline">
            <h2>Image gallery</h2>
            <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h3>
        </div>
        
        <div class="row">
            <!-- GALLERY ITEM 1 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/DDA0DD/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_01.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 1 - END -->
            
            <!-- GALLERY ITEM 2 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/000080/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_02.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 2 - END -->
            
            <!-- GALLERY ITEM 3 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/EEE8AA/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_03.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 3 - END -->
            
            <!-- GALLERY ITEM 4 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/FFDAB9/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_04.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 4 - END -->
        
            <!-- GALLERY ITEM 5 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/AFEEEE/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_05.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 5 - END -->
            
            <!-- GALLERY ITEM 6 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/98FB98/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_06.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 6 - END -->
            
            <!-- GALLERY ITEM 7 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/DDA0DD/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_07.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 7 - END -->
            
            <!-- GALLERY ITEM 8 - START -->
            <div class="overlay-wrapper col-xs-6 col-sm-3">
                <img src="https://www.bootdey.com/image/350x300/663399/000000" class="img-responsive" alt="">
                <span class="overlay">
                    <a href="#assets/images/image_08.JPG" class="show-image"><i class="fa fa-plus"></i></a>
                    <a href="#" class=""><i class="fa fa-link"></i></a>
                </span>
            </div>
            <!-- GALLERY ITEM 8 - END -->
        </div>
    </div>
</section>

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;}

/*----------------------------*/

.content-item {
    padding:30px 0;
	background-color:#FFFFFF;
}

.content-item.grey {
	background-color:#F0F0F0;
	padding:50px 0;
	height:100%;
}

.content-item h2 {
	font-weight:700;
	font-size:35px;
	line-height:45px;
	text-transform:uppercase;
	margin:20px 0;
}

.content-item h3 {
	font-weight:400;
	font-size:20px;
	color:#555555;
	margin:10px 0 15px;
	padding:0;
}

.content-headline {
	height:1px;
	text-align:center;
	margin:20px 0 70px;
}

.content-headline h2 {
	background-color:#FFFFFF;
	display:inline-block;
	margin:-20px auto 0;
	padding:0 20px;
}

.grey .content-headline h2 {
	background-color:#F0F0F0;
}

.content-headline h3 {
	font-size:14px;
	color:#AAAAAA;
	display:block;
}


#gallery .row {
    margin:0;
}

#gallery .row > div {
	padding:0;
}

#gallery .overlay-wrapper:hover .overlay {
	background-color:rgba(0,0,0,0.7);
}

#gallery-item h2 {
	font-size:28px;
	margin-top:0;
}

#gallery-item img {
	background-color:#FFFFFF;
	border:3px solid #999999;
	padding:7px;
}

.overlay-wrapper {
    position:relative;
}

.overlay-wrapper .overlay {
    bottom:0;
    left:0;
    opacity:0;
    overflow:hidden;
    position:absolute;
    right:0;
    top:0;
	text-align:center;
	padding-top:25%;
	transition:all 0.4s ease;
}

.overlay-wrapper .overlay a {
	font-size:20px;
	width:50px;
	height:50px;
	color:#FFFFFF;
	display:inline-block;
	text-align:center;
	padding-top:12px;
	border-radius:50%;
	margin-right:15px;
	opacity:0.8;
}

.overlay-wrapper .overlay a:last-child {
	margin-right:0;
}

.overlay-wrapper .overlay a:hover {
	background-color:#333333;
	color:#FFFFFF;
}

.overlay-wrapper:hover .overlay {
	background-color:rgba(0,0,0,0.5);
	opacity:1;
}

Similar snippets

Bootstrap example and template. Gallery of images

Gallery of images

Bootstrap example and template. bs4 beta gallery

bs4 beta gallery

Bootstrap example and template. Image Cards

Image Cards

Bootstrap example and template. bs4 widget image cards

bs4 widget image cards

Bootstrap example and template. portfolio grid with filter menu and isotopejs

portfolio grid with filter menu and isotopejs

Bootstrap example and template. bs4 payments profile

bs4 payments profile

Bootstrap example and template. order placed successfully

order placed successfully

Bootstrap example and template. Portfolio filter

Portfolio filter

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. image gellery

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.1K+ 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