Bootstrap about page snipp example v03
Whole html/css code
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"> <title>About snipp</title> <style> figure { margin: 0; padding: 0; } .rounded img { border-radius: 0.4rem; } figure img { width: 100%; max-width: 100%; height: auto!important; } .card { border: 0; } </style> </head> <body> <section class="bg-light"> <div class="container py-5"> <figure class="rounded"><img src="https://bootstraplily.com/wp-content/uploads/2021/11/about15-1.jpg" alt="" /></figure> <div class="row"> <div class="col-xl-10 mx-auto"> <div class="card text-white" style="background-image:url(https://bootstraplily.com/wp-content/uploads/2021/11/rm222-mind-16_1.jpg); background-size:cover; top:-60px;" > <div class="card-body p-5"> <div class="row align-items-center counter-wrapper gy-4 text-center"> <div class="col-6 col-lg-3"> <h3 class="text-white h1 fw-bolder">7518</h3> <p class="mb-0 fw-bold">Completed Projects</p> </div> <!--/column --> <div class="col-6 col-lg-3"> <h3 class="text-white h1 fw-bolder">3472</h3> <p class="mb-0 fw-bold">Satisfied Customers</p> </div> <!--/column --> <div class="col-6 col-lg-3"> <h3 class="text-white h1 fw-bolder">2184</h3> <p class="mb-0 fw-bold">Expert Employees</p> </div> <!--/column --> <div class="col-6 col-lg-3"> <h3 class="text-white h1 fw-bolder">4523</h3> <p class="mb-0 fw-bold">Awards Won</p> </div> <!--/column --> </div> <!--/.row --> </div> <!--/.card-body --> </div> <!--/.card --> </div> <!-- /column --> </div> <!-- /.row --> </div> <!-- /.container --> </section> <!-- /section --> </body> </html>
jsfiddle example