Bootstrap snippet and html example. top customers list

Bootstrap 5.2.0 snippet "top customers list" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: list,customers

HTML code

Clean, semantic HTML that powers this Bootstrap 5.2.0 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-xl-12 mb-3 mb-lg-5">
            <div class="card">
                <div class="d-flex card-header justify-content-between">
                    <h5 class="me-3 mb-0">Top Customers</h5>
                    <a href="#!.html">View All</a>
                </div>
                <div class="card-body">
                    <ul class="list-group list-group-flush">
                        <!--List-item-->
                        <li class="list-group-item pt-0">
                            <div class="d-flex align-items-center">
                                <div class="flex-shrink-0 me-3">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="" class="avatar rounded-circle" />
                                </div>
                                <div class="flex-grow-1">
                                    <h6 class="mb-0">Inara Britt</h6>
                                    <p class="mb-0 text-muted">Georgia, USA</p>
                                </div>
                                <div class="flex-shrink-0 text-end">
                                    <span>
                                        $927.00
                                    </span>
                                </div>
                            </div>
                        </li>
                        <!--List-item-->
                        <li class="list-group-item">
                            <div class="d-flex align-items-center">
                                <div class="flex-shrink-0 me-3">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="" class="avatar rounded-circle" />
                                </div>
                                <div class="flex-grow-1">
                                    <h6 class="mb-0">Eduard Franz</h6>
                                    <p class="mb-0 text-muted">London, UK</p>
                                </div>
                                <div class="flex-shrink-0 text-end">
                                    <span>
                                        $916.00
                                    </span>
                                </div>
                            </div>
                        </li>
                        <!--List-item-->
                        <li class="list-group-item">
                            <div class="d-flex align-items-center">
                                <div class="flex-shrink-0 me-3">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="" class="avatar rounded-circle" />
                                </div>
                                <div class="flex-grow-1">
                                    <h6 class="mb-0">Gianluca Darby</h6>
                                    <p class="mb-0 text-muted">São Paulo, Brazil</p>
                                </div>
                                <div class="flex-shrink-0 text-end">
                                    <span>
                                        $896.50
                                    </span>
                                </div>
                            </div>
                        </li>
                        <!--List-item-->
                        <li class="list-group-item">
                            <div class="d-flex align-items-center">
                                <div class="flex-shrink-0 me-3">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="" class="avatar rounded-circle" />
                                </div>
                                <div class="flex-grow-1">
                                    <h6 class="mb-0">Milana Myles</h6>
                                    <p class="mb-0 text-muted">Marseille, France</p>
                                </div>
                                <div class="flex-shrink-0 text-end">
                                    <span>
                                        $874.50
                                    </span>
                                </div>
                            </div>
                        </li>
                        <!--List-item-->
                        <li class="list-group-item pb-0">
                            <div class="d-flex align-items-center">
                                <div class="flex-shrink-0 me-3">
                                    <img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="" class="avatar rounded-circle" />
                                </div>
                                <div class="flex-grow-1">
                                    <h6 class="mb-0">Taisiia Oluchi</h6>
                                    <p class="mb-0 text-muted">Durban, SA</p>
                                </div>
                                <div class="flex-shrink-0 text-end">
                                    <span>
                                        $857.50
                                    </span>
                                </div>
                            </div>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </div>
</div>

CSS code

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

body{margin-top:20px;
background:#EDF1F9;
}
.card {
    box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}
.avatar {
    width: 3rem;
    height: 3rem;
    font-size: .765625rem;
}
a {
text-decoration:none;    
}

Similar snippets

Bootstrap example and template. top item list

top item list

Bootstrap example and template. bs4 account tickets

bs4 account tickets

Bootstrap example and template. zig zag user description

zig zag user description

Bootstrap example and template. bs4 user product list

bs4 user product list

Bootstrap example and template. Bootstrap 3 colors progress bar with titles

Bootstrap 3 colors progress bar with titles

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. bs4 cart

bs4 cart

Bootstrap example and template. Google plus navbar style

Google plus navbar style

FAQ

How do I use this snippet?

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

Bootstrap example and template. top customers list

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

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