Bootstrap snippet and html example. project progress card

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: card,project,progress

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 5.2.0 included, to get the result that you can see in the preview selection

<div class="container">
    <div class="row">
        <div class="col-xl-5 mb-3 mb-lg-5">
            <div class="card">
                <div class="card-body">
                    <div class="d-flex flex-column text-center align-items-center">

                        <div class="flex-grow-1 pt-4">
                            <span class="d-block text-muted">Updated 2h ago</span>
                            <h5>Prosperops development</h5>
                            <div class="mb-4">
                                <span class="badge rounded-pill bg-success">In Progress</span>
                            </div>
                            <div class="avatar-group">
                                <a href="#!.html" class="avatar-group-item avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="Gabriel H">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="..." class="avatar-group-img rounded-circle" />
                                </a>
                                <a href="#!.html" class="avatar-group-item avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="Emily Doe">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="..." class="avatar-group-img rounded-circle" />
                                </a>
                                <a href="#!.html" class="avatar-group-item avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="Adam Howkins">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="..." class="avatar-group-img rounded-circle" />
                                </a>
                                <a href="#!.html" class="avatar-group-item d-flex align-items-center justify-content-center bg-gray text-body avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="6 more members">
                                    <b>+6</b>
                                </a>
                            </div>
                        </div>
                    </div>
                </div>

                <!--Footer states-->
                <div class="card-footer py-0 border-top">
                    <div class="row">
                        <div class="col text-center p-3">
                            <h4 class="fs-5 mb-1">218</h4>
                            <span class="d-block font-size-sm">Tasks</span>
                        </div>

                        <div class="col p-3 text-center border-end border-start">
                            <h4 class="fs-5 mb-1">468</h4>
                            <span class="d-block font-size-sm">Hours</span>
                        </div>

                        <div class="col p-3 text-center">
                            <h4 class="fs-5 mb-1">14</h4>
                            <span class="d-block font-size-sm">Days left</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>       
        
        <div class="col-xl-5 mb-3 mb-lg-5">
            <div class="card">
                <div class="card-body">
                    <div class="d-flex flex-column text-center align-items-center">
                        <div class="flex-grow-1 pt-4">
                            <span class="d-block text-muted">Updated 2h ago</span>
                            <h5>Prosperops development</h5>
                            <div class="mb-4">
                                <span class="badge rounded-pill bg-success">In Progress</span>
                            </div>
                            <div class="avatar-group">
                                <a href="#!.html" class="avatar-group-item avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="Gabriel H">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="..." class="avatar-group-img rounded-circle" />
                                </a>
                                <a href="#!.html" class="avatar-group-item avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="Emily Doe">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="..." class="avatar-group-img rounded-circle" />
                                </a>
                                <a href="#!.html" class="avatar-group-item avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="Adam Howkins">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="..." class="avatar-group-img rounded-circle" />
                                </a>
                                <a href="#!.html" class="avatar-group-item d-flex align-items-center justify-content-center bg-gray text-body avatar sm rounded-circle" data-tippy-placement="top" data-tippy-content="6 more members">
                                    <b>+6</b>
                                </a>
                            </div>
                        </div>
                    </div>
                </div>

                <!--Footer states-->
                <div class="card-footer py-0 border-top">
                    <div class="row">
                        <div class="col text-center p-3">
                            <h4 class="fs-5 mb-1">218</h4>
                            <span class="d-block font-size-sm">Tasks</span>
                        </div>

                        <div class="col p-3 text-center border-end border-start">
                            <h4 class="fs-5 mb-1">468</h4>
                            <span class="d-block font-size-sm">Hours</span>
                        </div>

                        <div class="col p-3 text-center">
                            <h4 class="fs-5 mb-1">14</h4>
                            <span class="d-block font-size-sm">Days left</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</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 5.2.0 included, to get the result that you can see in the preview selection

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

.avatar-group .avatar-group-item {
    display: inline-block;
    position: relative;
    margin-left: -0.5rem;
    border: 2px solid var(--bs-card-bg);
}
.avatar.sm {
    width: 2.25rem;
    height: 2.25rem;
    font-size: .818125rem;
}
.avatar-group .avatar-group-item .avatar-group-img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.avatar img {
    max-width: 100%;
    display: block;
}

.avatar-group .avatar-group-item {
    display: inline-block;
    position: relative;
    margin-left: -0.5rem;
    border: 2px solid #000;
}
.avatar.sm {
    width: 2.25rem;
    height: 2.25rem;
    font-size: .818125rem;
}
.avatar-group {
    display: inline-flex;
    align-items: stretch;
}
.bg-gray {
    --bs-bg-opacity: 1;
    background-color: #FF7F50 !important;
}
.card {
    box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}

Similar snippets

Bootstrap example and template. bs4 profile header card

bs4 profile header card

Bootstrap example and template. project progress list

project progress list

Bootstrap example and template. bs4 recent activities panel

bs4 recent activities panel

Bootstrap example and template. projects progress

projects progress

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. bs4 crud users

bs4 crud users

Bootstrap example and template. bs4 simple chat app

bs4 simple chat app

Bootstrap example and template. User profile with friends and chat

User profile with friends and chat

Bootstrap example and template. project progress card

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 3.7K views, Using this bootstrap snippet you have the following benefits:

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