Bootstrap uses Helvetica Neue, Helvetica, Arial, and sans-serif in its default font stack. Using typography feature of Bootstrap you can create headings, paragraphs, lists and other inline elements.
All HTML headings (h1 to h6) are styled in Bootstrap.
To add an inline subheading to any of the headings, simply add around any of the elements or add .small class and you will get smaller text in a lighter color
Use the mark element to highlight text.
The HTML element provides markup for abbreviations or acronyms, like WWW or HTTP
You can use the default <blockquote> around any HTML text. Other options include, adding a <small> tag for identifying the source of the quote and right-aligning the blockquote using class .pull-right.
In this type of list, each list item can consist of both the <dt> and the <dd> elements. <dt> stands for definition term, and like a dictionary, this is the term (or phrase) that is being defined. Subsequently, the <dd> is the definition of the <dt>. You can make terms and descriptions in <dl> line up side-by-side using class dl-horizontal.
If you are going to be displaying code inline, you should use the <code> tag.
If the code needs to be displayed as a standalone block element or if it has multiple lines, then you should use the <pre> tag.