Set subtitle after a title in Bootstrap 4 card


To set subtitle after a title in Bootstrap card, use the card-subtitle class.

Let us see how −

<h6 class="card-subtitle text-muted">
  Set Subtitle here
</h6>

Add the above after the card-title class and inside the card-body class −

<div class="card-body">
  <h4 class="card-title">Sports</h4>
  <h6 class="card-subtitle text-muted">Indoor</h6>
  <p class="card-text">Squash, Dart, Chess</p>
</div>

You can try to run the following code to set subtitle in a Bootstrap card −

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">
    <h3>Indoor Sports</h3>
    <div class="card">
      <div class="card-body">
        <h4 class="card-title">Sports</h4>
        <h6 class="card-subtitle text-muted">Indoor</h6>
        <p class="card-text">Squash, Dart, Chess</p>
      </div>
    </div>
  </div>
</body>
</html>

Updated on: 18-Jun-2020

495 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements