Bootstrap Heading Classes

Notes:

Bootstrap Heading classes:
- allow us to display the content of an HTML tag as a heading

h1 : displays the content of an HTML tag as HTML heading1
<p class="h1">Some text</p>

h2 : displays the content of an HTML tag as HTML heading2
<p class="h2">Some text</p>

h3 : displays the content of an HTML tag as HTML heading3
<p class="h3">Some text</p>

h4 : displays the content of an HTML tag as HTML heading4
<p class="h4">Some text</p>

h5 : displays the content of an HTML tag as HTML heading5
<p class="h5">Some text</p>

h6 : displays the content of an HTML tag as HTML heading6
<p class="h6">Some text</p>

Interview Questions: