All HTML headings, <h1>
through <h6>
, are available. .h1
through .h6
classes are also available, for when you want to match the font styling of a heading but still want your text to be displayed inline.
Create lighter, secondary text in any heading with a generic <small>
tag or the .small
class.
h1. Heading Secondary text |
Semibold 36px |
h2. Heading Secondary text |
Semibold 30px |
h3. Heading Secondary text |
Semibold 24px |
h4. Heading Secondary text |
Semibold 18px |
h5. Heading Secondary text |
Semibold 14px |
h6. Heading Secondary text |
Semibold 12px |
Bootstrap's global default font-size
is 14px, with a line-height
of 1.428. This is applied to the <body>
and all paragraphs. In addition, <p>
(paragraphs) receive a bottom margin of half their computed line-height (10px by default).
Make a paragraph stand out by adding .lead
.
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.
Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.
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 commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
This elements are meant to make your life easier by providing simple default styles for all of the most basic typographical needs.
For highlighting a run of text due to its relevance in another context, use the <mark>
tag.
You can use the mark tag to highlight text.
For indicating blocks of text that have been deleted use the <del>
tag.
This line of text is meant to be treated as deleted text.
For indicating blocks of text that are no longer relevant use the <s>
tag.
This line of text is meant to be treated as no longer accurate.
For indicating additions to the document use the <ins>
tag.
This line of text is meant to be treated as an addition to the document.
To underline text use the <u>
tag.
This line of text will render as underlined
For de-emphasizing inline or blocks of text, use the <small>
tag to set text at 85% the size of the parent.
This line of text will render as underlined
For emphasizing or de-emphasizing inline or blocks of text, use the .text-small
or .text-large
class.
Text Large, Text Normal, Text Small
For emphasizing a snippet of text with a heavier font-weight.
The following snippet of text is rendered as bold text.
For emphasizing a snippet of text with italics.
The following snippet of text is rendered as italicized text.
Transform text in components with text capitalization classes.
Lowercased text.
Uppercased text.
Capitalized text.
Stylized implementation of HTML's <abbr>
element for abbreviations and acronyms to show the expanded version on hover.
An abbreviation of the word attribute is attr.
Add .initialism
to an abbreviation for a slightly smaller font-size.
HTML is the best thing since sliced bread.
Easily realign text to components with text alignment classes.
Left aligned text.
Center aligned text.
Right aligned text.
Justified text.
No wrap text.
You can change the color of text using specific classes.
Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.
Nullam id dolor id nibh ultricies vehicula ut id elit.
Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
Maecenas sed diam eget risus varius blandit sit amet non magna.
Etiam porta sem malesuada magna mollis euismod.
Donec ullamcorper nulla non metus auctor fringilla.
Cum sociis natoque penatibus et magnis dis parturient montes.
Nullam quis risus eget urna mollis ornare vel eu leo.
Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.
Nullam id dolor id nibh ultricies vehicula ut id elit.
Etiam porta sem malesuada magna mollis euismod.
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.
Add a <footer>
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.
Add .blockquote-reverse
for a blockquote with right-aligned content.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with <br>
.
Use the well as a simple effect on an element to give it an inset effect.
Lists are helpful for, well, lists of things. Didn't see that coming did you! There are baked-in styles for a number of different unordered list styles, as well as ordered and definition lists.
A list of items in which the order does not explicitly matter.
A list of items in which the order does explicitly matter.
Remove the default list-style
and left margin on list items (immediate children only). This only applies to immediate children list items, meaning you will need to add the class for any nested lists as well.
Place all list items on a single line with display: inline-block;
and some light padding.
A list of terms with their associated descriptions.
Make terms and descriptions in <dl>
line up side-by-side. Starts off stacked like default <dl>
s, but when the navbar expands, so do these.
A list of terms with their associated descriptions.
Wrap inline snippets of code with <code>
.
For example, <section>
should be wrapped as inline.
Use the <kbd>
to indicate input that is typically entered via keyboard.
To switch directories, type cd followed by the name of the directory.
To edit settings, press ctrl + E
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>
You may optionally add the .pre-scrollable
class, which will set a max-height of 350px and provide a y-axis scrollbar.
For indicating variables use the <var>
tag.
y = mx + b