home / typography
Headings

HTML headings, <h1> to <h6>

h1. Heading 1

h2. Heading 2

h3. Heading 3

h4. Heading 4

h5. Heading 5
h6. Heading 6
Body copy

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus duis mollis, est non.

<p>...</p>
Lead body copy

Make a paragraph stand out by adding .lead.

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.

<p class="lead">...</p>
Lists
Ordered
  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa
<ol>
  <li>...</li>
</ol>
Description
Description lists
A description list is perfect for defining terms.
Euismod
Vestibulum id ligula porta felis euismod.
Donec id elit non mi porta gravida.
Malesuada porta
Etiam porta sem malesuada magna mollis.
<dl>
  <dt>...</dt>
  <dd>...</dd>
</dl>
Emphasis
Small

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

<p>
  <small>This line of text is meant to 
  be treated as fine print.</small>
</p>
Bold

The following snippet of text is rendered as bold text.

<strong>rendered as bold text</strong>
Italics

The following snippet of text is rendered as italicized text.

<em>rendered as italicized text</em>
Emphasis classes

Convey meaning through color with a handful of emphasis utility classes.

Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.

Etiam porta sem malesuada magna mollis euismod.

Donec ullamcorper nulla non metus auctor fringilla.

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis.

Duis mollis, est non commodo luctus, nisi erat porttitor ligula.

<p class="muted">Fusce dapibus....</p>
<p class="text-warning">Etiam sem...</p>
<p class="text-error">Donec ullam...</p>
<p class="text-info">Aenean eu...</p>
<p class="text-success">Duis moll...</p>
Addresses

<address>

Preserve formatting by ending all lines with <br>.

Twitter, Inc.
795 Folsom Ave, Suite 600
San Francisco, CA 94107
P: (123) 456-7890
Full Name
name@example.com
<address>
  <strong>Twitter, Inc.</strong><br>
  <abbr title="Phone">P:</abbr> 
  (123) 456-7890
</address>
Abbreviations

<abbr>

For expanded text on long hover of an abbreviation, include the title attribute.

An abbreviation of the word attribute is attr.

<abbr title="attribute">attr</abbr>

<abbr class="initialism">

Add .initialism to an abbreviation for a slightly smaller font-size.

HTML is the best thing since sliced bread.

<abbr title="HyperText Markup Language" class="initialism">HTML</abbr>
Blockquotes

For quoting blocks of content from another source within your document.

Default blockquote

Wrap <blockquote> around any HTML as the quote. For straight quotes we recommend a <p>.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

<blockquote>
  <p>Lorem ipsum dolor sit amet...</p>
</blockquote>
Naming a source

Add <small> tag for identifying the source.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous
<blockquote>
  <p>Lorem ipsum dolor sit amet...</p>
  <small>Someone famous</small>
</blockquote>
Alternate displays

Use .pull-right for a floated, right-aligned blockquote.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous
<blockquote class="pull-right">
  ...
</blockquote>