<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Horizontal Card</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="m-4"> <div class="card" style="max-width: 500px;"> <div class="row g-0"> <div class="col-sm-5" style="background: #868e96;"> <img src="examples/resources/img-beautiful.png" class="card-img-top h-100" alt="..."> </div> <div class="col-sm-7"> <div class="card-body"> <h5 class="card-title">Alice Liddel</h5> <p class="card-text">London-based independent web designer and developer named Alice. She is skilled in JavaScript, HTML5, CSS3, and Bootstrap, among other things.</p> <a href="#" class="btn btn-primary stretched-link">View Profile</a> </div> </div> </div> </div> </div> </body> </html>