Inline Subheadings in Bootstrap


To add an inline subheading to any of the headings, simply add <small> around any of the elements or add .small class and you will get a smaller text in a lighter color. 

You can try to run the following code to work with inline subheadings in Bootstrap −

Example

 Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/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/3.3.7/js/bootstrap.min.js"></script>
   </head>
   <body>
      <h1>Heading1 h1.
         <small>I'm secondary Heading h1</small>
      </h1>
      <h2>Heading2 h2.
         <small>I'm secondary Heading h2</small>
      </h2>
   </body>
</html>

Updated on: 12-Jun-2020

573 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements