Typography

Documentation and examples for Boomerang typography, including headings, body text, lists, and more.

Headings

h1. Boomerang heading

h2. Boomerang heading

h3. Boomerang heading

h4. Boomerang heading

h5. Boomerang heading
h6. Boomerang heading

Example


<h1>h1. Boomerang heading</h1>
<h2>h2. Boomerang heading</h2>
<h3>h3. Boomerang heading</h3>
<h4>h4. Boomerang heading</h4>
<h5>h5. Boomerang heading</h5>
<h6>h6. Boomerang heading</h6>

Heading classes

Also, you can use a custom .heading class to style the default one. You can use .heading-* or .h* with values from 1 to 6 in order to apply a font size on a title no matter what type of heading it is.

h1. Boomerang heading

h2. Boomerang heading

h3. Boomerang heading

h4. Boomerang heading

h5. Boomerang heading
h6. Boomerang heading
For example, the following title is a h1 title looking as a h3.

h1. Boomerang heading

Example


<h1 class="heading heading-1">h1. Boomerang heading</h1>
<h2 class="heading heading-2">h2. Boomerang heading</h2>
<h3 class="heading heading-3">h3. Boomerang heading</h3>
<h4 class="heading heading-4">h4. Boomerang heading</h4>
<h5 class="heading heading-5">h5. Boomerang heading</h5>
<h6 class="heading heading-6">h6. Boomerang heading</h6>

Customizing heading

Use the included utility classes to recreate the small secondary heading text from Bootstrap 3.

Fancy display heading With faded secondary text

Example


<h3 class="heading">
    Fancy display heading
    <small class="text-muted">With faded secondary text</small>
</h3>

Display headings

Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using a display heading—a larger, slightly more opinionated heading style.

Display 1

Display 2

Display 3

Display 4

Example


<h1 class="heading display-1">Display 1</h1>
<h1 class="heading display-2">Display 2</h1>
<h1 class="heading display-3">Display 3</h1>
<h1 class="heading display-4">Display 4</h1>

Lead

Make a paragraph stand out by adding .lead.

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.

Example


<p class="lead">
    Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
</p>

Inline text elements

You can use the mark tag to highlight text.

This line of text is meant to be treated as deleted text.

This line of text is meant to be treated as no longer accurate.

This line of text is meant to be treated as an addition to the document.

This line of text will render as underlined

This line of text is meant to be treated as fine print.

This line rendered as bold text.

This line rendered as italicized text.

Example


<p>You can use the mark tag to <mark>highlight</mark> text.</p>
<p><del>This line of text is meant to be treated as deleted text.</del></p>
<p><s>This line of text is meant to be treated as no longer accurate.</s></p>
<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
<p><u>This line of text will render as underlined</u></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><strong>This line rendered as bold text.</strong></p>
<p><em>This line rendered as italicized text.</em></p>