Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Adding Images to Cards

  • .card-img-top → Places an image on top
  • .card-img-bottom → Places an image at the bottom
HTML
<div class="card" style="width: 18rem;">
  <img src="./Frame (1).jpg" class="card-img-top" alt="Card Image">
  <div class="card-body">
    <h5 class="card-title">Card with Image</h5>
    <p class="card-text">This is a card with an image at the top.</p>
  </div>
</div>