Headings

All HTML headings, <h1> through <h6> are available.

h1. Heading 1

h2. Heading 2

h3. Heading 3

h4. Heading 4

h5. Heading 5
h6. Heading 6

Built with Less

The typographic scale is based on two LESS variables in variables.less: @baseFontSize and @baseLineHeight. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.

Body copy

Bootstrap's global default font-size is 14px, with a line-height of 1.7em. This is applied to the <body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of half their line-height (9px by default).

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.

<p>...</p>

Lead body copy

Make a paragraph stand out by adding .lead.

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

<pclass="lead">...</p>

Emphasis

Make use of HTML's default emphasis tags with lightweight styles.

<em>

For emphasizing a snippet of text with stress

The following snippet of text is rendered as italicized text.

<em>rendered as italicized text</em>

<strong>

For emphasizing a snippet of text with important

The following snippet of text is rendered as bold text.

<strong>rendered as bold text</strong>

<small>

For de-emphasizing inline or blocks of text, use the small tag.

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>

Note: Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.

Notice Styles

Use the <p> tag with .success, .warning, .info or .error classes.

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<pclass="success">...</p>

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<pclass="info">...</p>

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<pclass="warning">...</p>

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<pclass="error">...</p>

Abbreviations

Stylized implementation of HTML's <abbr> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a title attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.

<abbr>

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

An abbreviation of the word attribute is attr.

<abbrtitle="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.

<abbrtitle="attribute"class="initialism">attr</abbr>

Addresses

Stylized implementation of HTML's element to present contact information for the nearest ancestor or the entire body of work.

<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
Ten adres pocztowy jest chroniony przed spamowaniem. Aby go zobaczyć, konieczne jest włączenie w przeglądarce obsługi JavaScript.This email address is being protected from spambots. You need JavaScript enabled to view it.
  1. <address>
  2. <strong>Twitter, Inc.</strong><br>
  3. 795 Folsom Ave, Suite 600<br>
  4. San Francisco, CA 94107<br>
  5. <abbrtitle="Phone">P:</abbr> (123) 456-7890
  6. </address>
  7. <address>
  8. <strong>Full Name</strong><br>
  9. <ahref="mailto:#">Ten adres pocztowy jest chroniony przed spamowaniem. Aby go zobaczyć, konieczne jest włączenie w przeglądarce obsługi JavaScript.</a>
  10. </address>

Blockquotes

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

Default blockqoute

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.

  1. <blockquote>
  2. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
  3. </blockquote>

Blockquote options

Style and content changes for simple variations on a standard blockquote.

Naming a source

Add <small> tag for identifying the source. Wrap the name of the source work in <cite>.

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

Someone famous in Source Title
  1. <blockquote>
  2. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
  3. <small>Someone famous <citetitle="Source Title">Source Title</cite></small>
  4. </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 in Source Title
  1. <blockquoteclass="pull-right">
  2. ...
  3. </blockquote>

Lists

Unordered

A list of items in which the order does not explicitly matter.

  • Lorem ipsum dolor sit amet
  • Nulla volutpat aliquam velit
    • Phasellus iaculis neque
    • Purus sodales ultricies
    • Vestibulum laoreet porttitor sem
    • Ac tristique libero volutpat at
  • Faucibus porta lacus fringilla vel
  • Eget porttitor lorem
  1. <ul>
  2. <li>...</li>
  3. </ul>

Ordered

A list of items in which the order does explicitly matter (numbered list).

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa
  4. Facilisis in pretium nisl aliquet
  5. Nulla volutpat aliquam velit
  6. Faucibus porta lacus fringilla vel
  7. Aenean sit amet erat nunc
  8. Eget porttitor lorem
  1. <ol>
  2. <li>...</li>
  3. </ol>

Unstyled

A list of items with no list-style or additional left padding.

  • Lorem ipsum dolor sit amet
  • Nulla volutpat aliquam velit
    • Phasellus iaculis neque
    • Purus sodales ultricies
    • Vestibulum laoreet porttitor sem
    • Ac tristique libero volutpat at
  • Faucibus porta lacus fringilla vel
  • Eget porttitor lorem
  1. <ulclass="unstyled">
  2. <li>...</li>
  3. </ul>

Description

A list of terms with their associated descriptions.

Description lists
A description list is perfect for defining terms.
Euismod
Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
Donec id elit non mi porta gravida at eget metus.
Malesuada porta
Etiam porta sem malesuada magna mollis euismod.
  1. <dl>
  2. <dt>...</dt>
  3. <dd>...</dd>
  4. </dl>

Note: Horizontal description lists will truncate terms that are too long to fit in the left column fix text-overflow. In narrower viewports, they will change to the default stacked layout.

Horizontal description

Make terms and descriptions in <dl> line up side-by-side.

Description lists
A description list is perfect for defining terms.
Euismod
Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
Donec id elit non mi porta gravida at eget metus.
Malesuada porta
Etiam porta sem malesuada magna mollis euismod.
Felis euismod semper eget lacinia
Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
  1. <dlclass="dl-horizontal">
  2. <dt>...</dt>
  3. <dd>...</dd>
  4. </dl>

Inline

Wrap inline snippets of code with <code>.

For example, <section> should be wrapped as inline.
  1. For example,<code><section></code> should be wrapped asinline.

Note: Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.

You may optionally add the .pre-scrollable class which will set a max-height of 350px and provide a y-axis scrollbar.

Basic block

Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.

<p>Sample text here...</p>
  1. <pre>
  2. &lt;p&gt;Sample text here...&lt;/p&gt;
  3. </pre>

Default styles

For basic styling—light padding and only horizontal dividers—add the base class .table to any <table>.

#First NameLast NameUsername
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
  1. <tableclass="table">
  2. </table>

Optional classes

Add any of the follow classes to the .table base class.

.table-striped

Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE7-IE8).

#First NameLast NameUsername
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
  1. <tableclass="table table-striped">
  2. </table>

.table-hover

Enable a hover state on table rows within a <tbody>.

#First NameLast NameUsername
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
  1. <tableclass="table table-hover">
  2. </table>

.table-bordered

Add borders and rounded corners to the table.

#First NameLast NameUsername
1 Mark Otto @mdo
Mark Otto @TwBootstrap
2 Jacob Thornton @fat
3 Larry the Bird @twitter
  1. <tableclass="table table-bordered">
  2. </table>

.table-condensed

Makes tables more compact by cutting cell padding in half.

#First NameLast NameUsername
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
  1. <tableclass="table table-condensed">
  2. </table>

Optional row classes

Use contextual classes to color table rows.

ClassDescription
.success Indicates a successful or positive action.
.error Indicates a dangerous or potentially negative action.
.info Used as an alternative to the default styles.
#ProductPayment TakenStatus
1 TB - Monthly 01/04/2012 Approved
2 TB - Monthly 02/04/2012 Declined
3 TB - Monthly 03/04/2012 Pending
4 TB - Monthly 04/04/2012 Call in to confirm
  1. ...
  2. <tr class="success">
  3. <td>1</td>
  4. <td>TB - Monthly</td>
  5. <td>01/04/2012</td>
  6. <td>Approved</td>
  7. </tr>
  8. ...

Default styles

Individual form controls receive styling, but without any required base class on the <form> or large changes in markup. Results in stacked, left-aligned labels on top of form controls.

Legend Example block-level help text here.
  1. <form>
  2. <legend>Legend</legend>
  3. <label>Label name</label>
  4. <inputtype="text"placeholder="Type something…">
  5. <spanclass="help-block">Example block-level help text here.</span>
  6. <labelclass="checkbox">
  7. <inputtype="checkbox"> Check me out
  8. </label>
  9. <buttontype="submit"class="btn">Submit</button>
  10. </form>

Optional layouts

Included with Bootstrap are three optional form layouts for common use cases.

Search form

Add .form-search to the form and .search-query to the <input> for an extra-rounded text input.

  1. <formclass="form-search">
  2. <inputtype="text"class="input-medium search-query">
  3. <buttontype="submit"class="btn">Search</button>
  4. </form>

Inline form

Add .form-inline for left-aligned labels and inline-block controls for a compact layout.

  1. <formclass="form-inline">
  2. <inputtype="text"class="input-small"placeholder="Email">
  3. <inputtype="password"class="input-small"placeholder="Password">
  4. <labelclass="checkbox">
  5. <inputtype="checkbox"> Remember me
  6. </label>
  7. <buttontype="submit"class="btn">Sign in</button>
  8. </form>

Horizontal form

Right align labels and float them to the left to make them appear on the same line as controls. Requires the most markup changes from a default form:

  • Add .form-horizontal to the form
  • Wrap labels and controls in .control-group
  • Add .control-label to the label
  • Wrap any associated controls in .controls for proper alignment
Legend
  1. <formclass="form-horizontal">
  2. <divclass="control-group">
  3. <labelclass="control-label"for="inputEmail">Email</label>
  4. <divclass="controls">
  5. <inputtype="text"id="inputEmail"placeholder="Email">
  6. </div>
  7. </div>
  8. <divclass="control-group">
  9. <labelclass="control-label"for="inputPassword">Password</label>
  10. <divclass="controls">
  11. <inputtype="password"id="inputPassword"placeholder="Password">
  12. </div>
  13. </div>
  14. <divclass="control-group">
  15. <divclass="controls">
  16. <labelclass="checkbox">
  17. <inputtype="checkbox"> Remember me
  18. </label>
  19. <buttontype="submit"class="btn">Sign in</button>
  20. </div>
  21. </div>
  22. </form>

Supported form controls

Examples of standard form controls supported in an example form layout.

Inputs

Most common form control, text-based input fields. Includes support for all HTML5 types: text, password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and color.

Requires the use of a specified type at all times.

  1. <inputtype="text"placeholder="Text input">

Textarea

Form control which supports multiple lines of text. Change row attribute as necessary.

  1. <textarearows="3"></textarea>

Checkboxes and radios

Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.

Default (stacked)


  1. <labelclass="checkbox">
  2. <inputtype="checkbox"value="">
  3. Option one is this and that—be sure to include why it's great
  4. </label>
  5.  
  6. <labelclass="radio">
  7. <inputtype="radio"name="optionsRadios"id="optionsRadios1"value="option1"checked>
  8. Option one is this and that—be sure to include why it's great
  9. </label>
  10. <labelclass="radio">
  11. <inputtype="radio"name="optionsRadios"id="optionsRadios2"value="option2">
  12. Option two can be something else and selecting it will deselect option one
  13. </label>

Inline checkboxes

Add the .inline class to a series of checkboxes or radios for controls appear on the same line.

  1. <labelclass="checkbox inline">
  2. <inputtype="checkbox"id="inlineCheckbox1"value="option1"> 1
  3. </label>
  4. <labelclass="checkbox inline">
  5. <inputtype="checkbox"id="inlineCheckbox2"value="option2"> 2
  6. </label>
  7. <labelclass="checkbox inline">
  8. <inputtype="checkbox"id="inlineCheckbox3"value="option3"> 3
  9. </label>

Selects

Use the default option or specify a multiple="multiple" to show multiple options at once.


  1. <select>
  2. <option>1</option>
  3. <option>2</option>
  4. <option>3</option>
  5. <option>4</option>
  6. <option>5</option>
  7. </select>
  8.  
  9. <selectmultiple="multiple">
  10. <option>1</option>
  11. <option>2</option>
  12. <option>3</option>
  13. <option>4</option>
  14. <option>5</option>
  15. </select>

Extending form controls

Adding on top of existing browser controls, Bootstrap includes other useful form components.

Prepended and appended inputs

Add text or buttons before or after any text-based input. Do note that select elements are not supported here.

Default options

Wrap an .add-on and an input with one of two classes to prepend or append text to an input.

@

.00
  1. <divclass="input-prepend">
  2. <spanclass="add-on">@</span><inputclass="span2"id="prependedInput"size="16"type="text"placeholder="Username">
  3. </div>
  4. <divclass="input-append">
  5. <inputclass="span2"id="appendedInput"size="16"type="text"><spanclass="add-on">.00</span>
  6. </div>

Search form

  1. <formclass="form-search">
  2. <divclass="input-append">
  3. <inputtype="text"class="span2 search-query">
  4. <buttontype="submit"class="btn">Search</button>
  5. </div>
  6. <divclass="input-prepend">
  7. <buttontype="submit"class="btn">Search</button>
  8. <inputtype="text"class="span2 search-query">
  9. </div>
  10. </form>

Combined

Use both classes and two instances of .add-on to prepend and append an input.

$ .00
  1. <divclass="input-prepend input-append">
  2. <spanclass="add-on">$</span><inputclass="span2"id="appendedPrependedInput"size="16"type="text"><spanclass="add-on">.00</span>
  3. </div>

Buttons instead of text

Instead of a <span> with text, use a .btn to attach a button (or two) to an input.


  1. <divclass="input-append">
  2. <inputclass="span2"id="appendedInputButton"size="16"type="text"><buttonclass="btn"type="button">Go!</button>
  3. </div>
  4.  
  5. <divclass="input-append">
  6. <inputclass="span2"id="appendedInputButtons"size="16"type="text"><buttonclass="btn"type="button">Search</button><buttonclass="btn"type="button">Options</button>
  7. </div>

Default buttons

Button styles can be applied to anything with the .btn class applied. However, typically you'll want to apply these to only <a> and <button> elements for the best rendering.

Buttonclass=""Description
btn Standard gray button with gradient
btn btn-primary Provides extra visual weight and identifies the primary action in a set of buttons
btn btn-info Used as an alternative to the default styles
btn btn-success Indicates a successful or positive action
btn btn-warning Indicates caution should be taken with this action
btn btn-danger Indicates a dangerous or potentially negative action
btn btn-inverse Alternate dark gray button, not tied to a semantic action or use
btn btn-link Deemphasize a button by making it look like a link while maintaining button behavior

Cross browser compatibility

IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled button elements, rendering text gray with a nasty text-shadow that we cannot fix.

Button sizes

Fancy larger or smaller buttons? Add .btn-large, .btn-small, or .btn-mini for additional sizes.

  1. <p>
  2. <buttonclass="btn btn-large btn-primary"type="button">Large button</button>
  3. <buttonclass="btn btn-large"type="button">Large button</button>
  4. </p>
  5. <p>
  6. <buttonclass="btn btn-primary"type="button">Default button</button>
  7. <buttonclass="btn"type="button">Default button</button>
  8. </p>
  9. <p>
  10. <buttonclass="btn btn-small btn-primary"type="button">Small button</button>
  11. <buttonclass="btn btn-small"type="button">Small button</button>
  12. </p>
  13. <p>
  14. <buttonclass="btn btn-mini btn-primary"type="button">Mini button</button>
  15. <buttonclass="btn btn-mini"type="button">Mini button</button>
  16. </p>

Disabled state

Make buttons look unclickable by fading them back 50%.

Anchor element

Add the .disabled class to <a> buttons.

Primary link Link

  1. <ahref="#"class="btn btn-large btn-primary disabled">Primary link</a>
  2. <ahref="#"class="btn btn-large disabled">Link</a>

Note: We use .disabled as a utility class here, similar to the common .active class, so no prefix is required.

Button element

Add the disabled attribute to <button> buttons.

  1. <buttontype="button"class="btn btn-large btn-primary disabled"disabled="disabled">Primary button</button>
  2. <buttontype="button"class="btn btn-large"disabled>Button</button>

One class, multiple tags

Use the .btn class on an <a>, <button>, or <input> element.

Link
  1. <aclass="btn"href="">Link</a>
  2. <buttonclass="btn"type="submit">Button</button>
  3. <inputclass="btn"type="button"value="Input">
  4. <inputclass="btn"type="submit"value="Submit">

As a best practice, try to match the element for your context to ensure matching cross-browser rendering. If you have an input, use an <input type="submit"> for your button.

Icons

Font Awesome

Font Awesome is a pictographic language of web-related actions which delivers 249 icons. The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0 and you can find the full examples of usage at Font Awesome - http://fortawesome.github.com/Font-Awesome

Add .fa fa-CLASS_NAME to any element, best used with a <span>.

  fa-rub
  fa-ruble (alias)
  fa-rouble (alias)
  fa-pagelines
  fa-stack-exchange
  fa-arrow-circle-o-right
  fa-arrow-circle-o-left
  fa-caret-square-o-left
  fa-toggle-left (alias)
  fa-dot-circle-o
  fa-wheelchair
  fa-vimeo-square
  fa-try
  fa-turkish-lira (alias)
  fa-plus-square-o
  fa-adjust
  fa-anchor
  fa-archive
  fa-arrows
  fa-arrows-h
  fa-arrows-v
  fa-asterisk
  fa-ban
  fa-bar-chart-o
  fa-barcode
  fa-bars
  fa-beer
  fa-bell
  fa-bell-o
  fa-bolt
  fa-book
  fa-bookmark
  fa-bookmark-o
  fa-briefcase
  fa-bug
  fa-building-o
  fa-bullhorn
  fa-bullseye
  fa-calendar
  fa-calendar-o
  fa-camera
  fa-camera-retro
  fa-caret-square-o-down
  fa-caret-square-o-left
  fa-caret-square-o-right
  fa-caret-square-o-up
  fa-certificate
  fa-check
  fa-check-circle
  fa-check-circle-o
  fa-check-square
  fa-check-square-o
  fa-circle
  fa-circle-o
  fa-clock-o
  fa-cloud
  fa-cloud-download
  fa-cloud-upload
  fa-code
  fa-code-fork
  fa-coffee
  fa-cog
  fa-cogs
  fa-comment
  fa-comment-o
  fa-comments
  fa-comments-o
  fa-compass
  fa-credit-card
  fa-crop
  fa-crosshairs
  fa-cutlery
  fa-dashboard (alias)
  fa-desktop
  fa-dot-circle-o
  fa-download
  fa-edit (alias)
  fa-ellipsis-h
  fa-ellipsis-v
  fa-envelope
  fa-envelope-o
  fa-eraser
  fa-exchange
  fa-exclamation
  fa-exclamation-circle
  fa-exclamation-triangle
  fa-external-link
  fa-external-link-square
  fa-eye
  fa-eye-slash
  fa-female
  fa-fighter-jet
  fa-film
  fa-filter
  fa-fire
  fa-fire-extinguisher
  fa-flag
  fa-flag-checkered
  fa-flag-o
  fa-flash (alias)
  fa-flask
  fa-folder
  fa-folder-o
  fa-folder-open
  fa-folder-open-o
  fa-frown-o
  fa-gamepad
  fa-gavel
  fa-gear (alias)
  fa-gears (alias)
  fa-gift
  fa-glass
  fa-globe
  fa-group (alias)
  fa-hdd-o
  fa-headphones
  fa-heart
  fa-heart-o
  fa-home
  fa-inbox
  fa-info
  fa-info-circle
  fa-key
  fa-keyboard-o
  fa-laptop
  fa-leaf
  fa-legal (alias)
  fa-lemon-o
  fa-level-down
  fa-level-up
  fa-lightbulb-o
  fa-location-arrow
  fa-lock
  fa-magic
  fa-magnet
  fa-mail-forward (alias)
  fa-mail-reply (alias)
  fa-mail-reply-all
  fa-male
  fa-map-marker
  fa-meh-o
  fa-microphone
  fa-microphone-slash
  fa-minus
  fa-minus-circle
  fa-minus-square
  fa-minus-square-o
  fa-mobile
  fa-mobile-phone (alias)
  fa-money
  fa-moon-o
  fa-music
  fa-pencil
  fa-pencil-square
  fa-pencil-square-o
  fa-phone
  fa-phone-square
  fa-picture-o
  fa-plane
  fa-plus
  fa-plus-circle
  fa-plus-square
  fa-plus-square-o
  fa-power-off
  fa-print
  fa-puzzle-piece
  fa-qrcode
  fa-question
  fa-question-circle
  fa-quote-left
  fa-quote-right
  fa-random
  fa-refresh
  fa-reply
  fa-reply-all
  fa-retweet
  fa-road
  fa-rocket
  fa-rss
  fa-rss-square
  fa-search
  fa-search-minus
  fa-search-plus
  fa-share
  fa-share-square
  fa-share-square-o
  fa-shield
  fa-shopping-cart
fa-sign-in
  fa-sign-out
  fa-signal
  fa-sitemap
  fa-smile-o
  fa-sort
  fa-sort-alpha-asc
  fa-sort-alpha-desc
  fa-sort-amount-asc
  fa-sort-amount-desc
  fa-sort-asc
  fa-sort-desc
  fa-sort-down (alias)
  fa-sort-numeric-asc
  fa-sort-numeric-desc
  fa-sort-up (alias)
  fa-spinner
  fa-square
  fa-square-o
  fa-star
  fa-star-half
  fa-star-half-empty (alias)
  fa-star-half-full (alias)
  fa-star-half-o
  fa-star-o
  fa-subscript
  fa-suitcase
  fa-sun-o
  fa-superscript
  fa-tablet
  fa-tachometer
  fa-tag
  fa-tags
  fa-tasks
  fa-terminal
  fa-thumb-tack
  fa-thumbs-down
  fa-thumbs-o-down
  fa-thumbs-o-up
  fa-thumbs-up
  fa-ticket
  fa-times
  fa-times-circle
  fa-times-circle-o
  fa-tint
  fa-toggle-down (alias)
  fa-toggle-left (alias)
  fa-toggle-right (alias)
  fa-toggle-up (alias)
  fa-trash-o
  fa-trophy
  fa-truck
  fa-umbrella
  fa-unlock
  fa-unlock-alt
  fa-unsorted (alias)
  fa-upload
  fa-user
  fa-users
  fa-video-camera
  fa-volume-down
  fa-volume-off
  fa-volume-up
  fa-warning (alias)
  fa-wheelchair
  fa-wrench
  fa-check-square
  fa-check-square-o
  fa-circle
  fa-circle-o
  fa-dot-circle-o
  fa-minus-square
  fa-minus-square-o
  fa-plus-square
  fa-plus-square-o
  fa-square
  fa-square-o
  fa-bitcoin (alias)
  fa-btc
  fa-cny (alias)
  fa-dollar (alias)
  fa-eur
  fa-euro (alias)
  fa-gbp
<  fa-inr
  fa-jpy
  fa-krw
  fa-money
  fa-rmb (alias)
  fa-rouble (alias)
  fa-rub
  fa-ruble (alias)
  fa-rupee (alias)
  fa-try
  fa-turkish-lira (alias)
  fa-usd
  fa-won (alias)
  fa-yen (alias)
  fa-align-center
  fa-align-justify
  fa-align-left
  fa-align-right
  fa-bold
  fa-chain (alias)
  fa-chain-broken
  fa-clipboard
  fa-columns
  fa-copy (alias)
  fa-cut (alias)
  fa-dedent (alias)
  fa-eraser
  fa-file
  fa-file-o
  fa-file-text
  fa-file-text-o
  fa-files-o
  fa-floppy-o
  fa-font
  fa-indent
  fa-italic
  fa-link
  fa-list
  fa-list-alt
  fa-list-ol
  fa-list-ul
  fa-outdent
  fa-paperclip
  fa-paste (alias)
  fa-repeat
  fa-rotate-left (alias)
  fa-rotate-right (alias)
  fa-save (alias)
  fa-scissors
  fa-strikethrough
  fa-table
  fa-text-height
  fa-text-width
  fa-th
  fa-th-large
  fa-th-list
  fa-underline
  fa-undo
  fa-unlink (alias)
  fa-angle-double-down
  fa-angle-double-left
  fa-angle-double-right
  fa-angle-double-up
  fa-angle-down
  fa-angle-left
  fa-angle-right
  fa-angle-up
  fa-arrow-circle-down
  fa-arrow-circle-left
  fa-arrow-circle-o-down
  fa-arrow-circle-o-left
  fa-arrow-circle-o-right
  fa-arrow-circle-o-up
  fa-arrow-circle-right
  fa-arrow-circle-up
  fa-arrow-down
  fa-arrow-left
  fa-arrow-right
  fa-arrow-up
  fa-arrows
  fa-arrows-alt
  fa-arrows-h
  fa-arrows-v
  fa-caret-down
  fa-caret-left
  fa-caret-right
  fa-caret-square-o-down
  fa-caret-square-o-left
  fa-caret-square-o-right
  fa-caret-square-o-up
  fa-caret-up
  fa-chevron-circle-down
  fa-chevron-circle-left
  fa-chevron-circle-right
  fa-chevron-circle-up
  fa-chevron-down
  fa-chevron-left
  fa-chevron-right
  fa-chevron-up
  fa-hand-o-down
  fa-hand-o-left
  fa-hand-o-right
  fa-hand-o-up
  fa-long-arrow-down
  fa-long-arrow-left
  fa-long-arrow-right
  fa-long-arrow-up
  fa-toggle-down (alias)
  fa-toggle-left (alias)
  fa-toggle-right (alias)
  fa-toggle-up (alias)
  fa-arrows-alt
  fa-backward
  fa-compress
  fa-eject
  fa-expand
  fa-fast-backward
  fa-fast-forward
  fa-forward
  fa-pause
  fa-play
  fa-play-circle
  fa-play-circle-o
  fa-step-backward
  fa-step-forward
  fa-stop
  fa-youtube-play
  • All brand icons are trademarks of their respective owners.
  • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
  fa-adn
  fa-android
  fa-apple
  fa-bitbucket
  fa-bitbucket-square
  fa-bitcoin (alias)
  fa-btc
  fa-css3
  fa-dribbble
  fa-dropbox
  fa-facebook
  fa-facebook-square
  fa-flickr
  fa-foursquare
  fa-github
  fa-github-alt
  fa-github-square
  fa-gittip
  fa-google-plus
  fa-google-plus-square
  fa-html5
  fa-instagram
  fa-linkedin
  fa-linkedin-square
  fa-linux
  fa-maxcdn
  fa-pagelines
  fa-pinterest
  fa-pinterest-square
  fa-renren
  fa-skype
  fa-stack-exchange
  fa-stack-overflow
  fa-trello
  fa-tumblr
  fa-tumblr-square
  fa-twitter
  fa-twitter-square
  fa-vimeo-square
  fa-vk
  fa-weibo
  fa-windows
  fa-xing
  fa-xing-square
  fa-youtube
  fa-youtube-play
  fa-youtube-square
  fa-ambulance
  fa-h-square
  fa-hospital-o
  fa-medkit
  fa-plus-square
  fa-stethoscope
  fa-user-md
  fa-wheelchair