Create a Bootstrap 4 card header


To create a card header in Bootstrap 4, use the card-header class. Set the header inside the card using the class −

<div class="card-header">
  Product List
</div>

After adding the header, add the body of the card as shown in the following code snippet −

<div class="card-header">Product List</div>
  <div class="card-body">
    <p class="card-text">Product One</p>
    <p class="card-text">Product Two</p>
  </div>
</div>

Let us see an example to learn how to create Bootstrap 4 card header −

Example

Live Demo

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>

<body>
  <div class="container">
    <h2>Products</h2>
    <div class="card">
      <div class="card-header">Product List</div>
    <div class="card-body">
      <p class="card-text">Product One</p>
      <p class="card-text">Product Two</p>
    </div>
    <div class="card-footer">
      This was the list of products in stock.
    </div>
  </div>
</div>

</body>
</html>


Updated on: 16-Jun-2020

491 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements