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

Introduction to Bootstrap 5 Cards

Bootstrap 5 Cards are used to display content in a flexible and stylish manner.

The basic card structure consists of:

  • .card → The outer container: Creates a card layout
  • .card-body → The content wrapper: Adds padding around content
HTML
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Basic Bootstrap Card</title>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
  <div class="container mt-5">
    <div class="card">
      <div class="card-body">
        <h5 class="card-title">Basic Card</h5>
        <p class="card-text">This is a simple Bootstrap 5 card.</p>
      </div>
    </div>
  </div>
</body>
</html>