<!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/resources/media-object1.png" 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>fantastic trait Love it. Undoubtedly, I'll utilize this Bootstrap component at some point in the future, and I'll let you know when I do.</p> </div> </div> <hr> <div class="d-flex"> <div class="flex-shrink-0"> <img src="examples/resources/media-object2.png" 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>fantastic trait Love it. Undoubtedly, I'll utilize this Bootstrap component at some point in the future, and I'll let you know when I do.</p> </div> </div> </div> </body> </html>