Complete the code to create a heading with Bootstrap class for the largest heading size.
<h1 class="[1]">Welcome to Bootstrap</h1>
h6 as a class instead of Bootstrap display classes.text-muted which only change color.The display-1 class in Bootstrap styles the heading as the largest display heading.
Complete the code to create a smaller heading using Bootstrap's display classes.
<h2 class="[1]">Subheading Example</h2>
display-6 which is the smallest display size.lead which is for paragraph text, not headings.The display-4 class styles the heading smaller than display-1 but still large.
Fix the error in the heading class to correctly apply Bootstrap's display style.
<h3 class="[1]">Correct Heading</h3>
display1 without dash.The correct Bootstrap class uses a dash: display-3. Other options are invalid class names.
Fill both blanks to create a heading with Bootstrap display class and muted text color.
<h4 class="[1] [2]">Muted Display Heading</h4>
text-primary which colors text blue instead of muted gray.Use display-5 for heading size and text-muted for muted text color.
Fill all three blanks to create a heading with uppercase text, display class, and primary color.
<h5 class="[1] [2] [3]">Uppercase Primary Heading</h5>
text-lowercase instead of text-uppercase.text-uppercase makes text uppercase, display-6 sets heading size, and text-primary colors text blue.