Bootstrap snippet and html example. recent portfolio work

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: portfolio

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

<div class="container">
        <div class="row">
            <div class="col-md-12">
                <h3 class="heading-sec">Recent work</h3>
            </div>
        </div>
        <!--row-->
        <div class="row mb-5">
            <div class="col-md-4 col-sm-6 margin-btm-40">
                <div class="portfolio-sec">
                    <div class="portfolio-thumnail">
                        <a href="portfolio-single.html">
                            <img src="https://www.bootdey.com/image/350x180/E6E6FA/000000" class="img-fluid" alt="">
                        </a>
                    </div>
                    <div class="portfolio-desc text-center">
                        <h4 class="portfolio-post-title">portfolio item title here</h4>
                        <span class="portfolio-post-cat">Branding</span>
                        <h4><a href="portfolio-single.html" class="btn theme-btn-default btn-lg">More detail</a></h4>
                    </div>
                </div>
            </div>
            <!--portfolio item -->
            <div class="col-md-4 col-sm-6 margin-btm-40">
                <div class="portfolio-sec">
                    <div class="portfolio-thumnail">
                        <a href="portfolio-single.html">
                            <img src="https://www.bootdey.com/image/350x180/E6E6FA/000000" class="img-fluid" alt="">
                        </a>
                    </div>
                    <div class="portfolio-desc text-center">
                        <h4 class="portfolio-post-title">portfolio item title here</h4>
                        <span class="portfolio-post-cat">Branding</span>
                        <h4><a href="portfolio-single.html" class="btn theme-btn-default btn-lg">More detail</a></h4>
                    </div>
                </div>
            </div>
            <!--portfolio item -->
            <div class="col-md-4 col-sm-6 margin-btm-40">
                <div class="portfolio-sec">
                    <div class="portfolio-thumnail">
                        <a href="portfolio-single.html">
                            <img src="https://www.bootdey.com/image/350x180/E6E6FA/000000" class="img-fluid" alt="">
                        </a>
                    </div>
                    <div class="portfolio-desc text-center">
                        <h4 class="portfolio-post-title">portfolio item title here</h4>
                        <span class="portfolio-post-cat">Branding</span>
                        <h4><a href="portfolio-single.html" class="btn theme-btn-default btn-lg">More detail</a></h4>
                    </div>
                </div>
            </div>
            <!--portfolio item -->


            <div class="col-md-4 col-sm-6 margin-btm-40">
                <div class="portfolio-sec">
                    <div class="portfolio-thumnail">
                        <a href="portfolio-single.html">
                            <img src="https://www.bootdey.com/image/350x180/E6E6FA/000000" class="img-fluid" alt="">
                        </a>
                    </div>
                    <div class="portfolio-desc text-center">
                        <h4 class="portfolio-post-title">portfolio item title here</h4>
                        <span class="portfolio-post-cat">Branding</span>
                        <h4><a href="portfolio-single.html" class="btn theme-btn-default btn-lg">More detail</a></h4>
                    </div>
                </div>
            </div>
            <!--portfolio item -->
            <div class="col-md-4 col-sm-6 margin-btm-40">
                <div class="portfolio-sec">
                    <div class="portfolio-thumnail">
                        <a href="portfolio-single.html">
                            <img src="https://www.bootdey.com/image/350x180/E6E6FA/000000" class="img-fluid" alt="">
                        </a>
                    </div>
                    <div class="portfolio-desc text-center">
                        <h4 class="portfolio-post-title">portfolio item title here</h4>
                        <span class="portfolio-post-cat">Branding</span>
                        <h4><a href="portfolio-single.html" class="btn theme-btn-default btn-lg">More detail</a></h4>
                    </div>
                </div>
            </div>
            <!--portfolio item -->
            <div class="col-md-4 col-sm-6 margin-btm-40">
                <div class="portfolio-sec">
                    <div class="portfolio-thumnail">
                        <a href="portfolio-single.html">
                            <img src="https://www.bootdey.com/image/350x180/E6E6FA/000000" class="img-fluid" alt="">
                        </a>
                    </div>
                    <div class="portfolio-desc text-center">
                        <h4 class="portfolio-post-title">portfolio item title here</h4>
                        <span class="portfolio-post-cat">Branding</span>
                        <h4><a href="portfolio-single.html" class="btn theme-btn-default btn-lg">More detail</a></h4>
                    </div>
                </div>
            </div>
            <!--portfolio item -->
        </div>
        <!--row portfolio item-->
    </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{margin-top:20px;}

/*==========================portfolio ==========================*/
.portfolio-sec {
  color: #14171a;
  background-color: #fff;
  position: relative;
  margin-bottom: 20px; }
  .portfolio-sec:hover img {
    transform: translateY(-2px); }

.portfolio-thumnail img {
  width: 100%;
  border-radius: 5px 5px 0 0;
  height: auto;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.portfolio-desc {
  border-radius: 0 0 5px 5px;
  padding: 1.5rem 0;
  border: 1px solid #f5f5f5;
  border-top: 0px; }

h4.portfolio-post-title {
  margin-bottom: 1rem;
  font-size: 16px;
  text-transform: capitalize; }

.portfolio-post-cat {
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  color: #657786; }

.portfolio-desc .theme-btn-default {
  margin-bottom: -79px; }

.flexslider {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none; }

.portfolio-single-desc h3 {
  color: #14171a;
  font-size: 1.5rem;
  font-weight: 500; }

.theme-btn-default {
    background-color: #fff;
    border: 1px solid #f5f5f5;
    color: #657786;
}

.margin-btm-40 {
    margin-bottom: 40px;
}

Similar snippets

Bootstrap example and template. portfolio with category filter using isotope js

portfolio with category filter using isotope js

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

portfolio grid with filter menu and isotopejs

Bootstrap example and template. Portfolio filter

Portfolio filter

Bootstrap example and template. portfolio 4 columns

portfolio 4 columns

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. color contact list

color contact list

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. Invoice with company info and description

Invoice with company info and description

Bootstrap example and template. recent portfolio work

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 360 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