Emphasis
Small text
For de-emphasizing inline or blocks of text, use the <small> tag to set text at 85% the size of the parent. Heading elements receive their own font-size for nested <small> elements.
You may alternatively use an inline element with .small in place of any <small>.
<small>This line of text is meant to be treated as fine print.</small>
Bold
For emphasizing a snippet of text with a heavier font-weight.
<strong>rendered as bold text</strong>
Italics
For emphasizing a snippet of text with italics.
<em>rendered as italicized text</em>
Alignment classes
Easily realign text to components with text alignment classes.
<p class="text-left">Left aligned text.</p> <p class="text-center">Center aligned text.</p> <p class="text-right">Right aligned text.</p> <p class="text-justify">Justified text.</p>
OUTPUT