Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Rounded Media Objects</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="d-flex"> <div class="flex-shrink-0"> <img src="/examples/images/avatar.svg" class="rounded-circle" width="80" height="80" alt="Sample Image"> </div> <div class="flex-grow-1 ms-3"> <h5>Jhon Carter <small class="text-muted"><i>Posted on January 10, 2021</i></small></h5> <p>Excellent feature! I love it. One day I'm definitely going to put this Bootstrap component into use and I'll let you know once I do.</p> </div> </div> <hr> <div class="d-flex"> <div class="flex-shrink-0"> <img src="/examples/images/avatar.svg" class="rounded" width="80" height="80" alt="Sample Image"> </div> <div class="flex-grow-1 ms-3"> <h5>Jhon Carter <small class="text-muted"><i>Posted on January 10, 2021</i></small></h5> <p>Excellent feature! I love it. One day I'm definitely going to put this Bootstrap component into use and I'll let you know once I do.</p> </div> </div> </div> </body> </html>