<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Card with Stretched Link</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="width: 300px;"> <img src="examples/resources/img-beautiful.png" class="card-img-top" alt="..."> <div class="card-body text-center"> <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> </body> </html>