Headings
All HTML headings, <h1>
through <h6>
Heading 1
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid, officia maiores incidunt repellat quos itaque nisi, provident ut assumenda ipsam vel fuga voluptatem quia ea nulla error optio, totam praesentium. Corrupti non iste recusandae vitae. Corrupti, quidem optio adipisci rem veniam perspiciatis voluptates harum? Veritatis quas accusantium nemo dolor blanditiis!
Heading 2
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid, officia maiores incidunt repellat quos itaque nisi, provident ut assumenda ipsam vel fuga voluptatem quia ea nulla error optio, totam praesentium. Corrupti non iste recusandae vitae. Corrupti, quidem optio adipisci rem veniam perspiciatis voluptates harum? Veritatis quas accusantium nemo dolor blanditiis!
Heading 3
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid, officia maiores incidunt repellat quos itaque nisi, provident ut assumenda ipsam vel fuga voluptatem quia ea nulla error optio, totam praesentium. Corrupti non iste recusandae vitae. Corrupti, quidem optio adipisci rem veniam perspiciatis voluptates harum? Veritatis quas accusantium nemo dolor blanditiis!
Heading 4
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid, officia maiores incidunt repellat quos itaque nisi, provident ut assumenda ipsam vel fuga voluptatem quia ea nulla error optio, totam praesentium. Corrupti non iste recusandae vitae. Corrupti, quidem optio adipisci rem veniam perspiciatis voluptates harum? Veritatis quas accusantium nemo dolor blanditiis!
Heading 5
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid, officia maiores incidunt repellat quos itaque nisi, provident ut assumenda ipsam vel fuga voluptatem quia ea nulla error optio, totam praesentium. Corrupti non iste recusandae vitae. Corrupti, quidem optio adipisci rem veniam perspiciatis voluptates harum? Veritatis quas accusantium nemo dolor blanditiis!
Heading 6
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid, officia maiores incidunt repellat quos itaque nisi, provident ut assumenda ipsam vel fuga voluptatem quia ea nulla error optio, totam praesentium. Corrupti non iste recusandae vitae. Corrupti, quidem optio adipisci rem veniam perspiciatis voluptates harum? Veritatis quas accusantium nemo dolor blanditiis!
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
Display 5
Display 6
Lead
Make a paragraph stand out by adding .lead
.
This is a lead paragraph. It stands out from regular paragraphs.
Inline text elements
Styling for common inline HTML5 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.
Abbreviations
Stylized implementation of HTML’s <abbr>
element for abbreviations and acronyms to show the expanded version on hover.
attr
HTML
Blockquotes
For quoting blocks of content from another source within your document.
A well-known quote, contained in a blockquote element.
Naming a source
The HTML spec requires that blockquote attribution be placed outside the <blockquote>
. When providing attribution, wrap your <blockquote>
in a <figure>
and use a <figcaption>
or a block level element (e.g., <p>
) with the .blockquote-footer
class. Be sure to wrap the name of the source work in <cite>
as well.
Lists
All lists—<ul>
, <ol>
, and <dl>
—have their margin-top
removed and a margin-bottom: 1rem
. Nested lists have no margin-bottom
. We’ve also reset the padding-left
on <ul>
and <ol>
elements.
- All lists have their top margin removed
- And their bottom margin normalized
- Nested lists have no bottom margin
- This way they have a more even appearance
- Particularly when followed by more list items
- The left padding has also been reset
- Here’s an ordered list
- With a few list items
- It has the same overall look
- As the previous unordered list
For simpler styling, clear hierarchy, and better spacing, description lists have updated margin
s. <dd>
s reset margin-left
to 0
and add margin-bottom: .5rem
. <dt>
s are bolded.
- Description lists
- A description list is perfect for defining terms.
- Term
- Definition for the term.
- A second definition for the same term.
- Another term
- Definition for this other term.
Unstyled list
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.
- This is a list.
- It appears completely unstyled.
- Structurally, it's still a list.
- However, this style only applies to immediate child elements.
- Nested lists:
- are unaffected by this style
- will still show a bullet
- and have appropriate left margin
- This may still come in handy in some situations.
Inline list
Remove a list’s bullets and apply some light margin
with a combination of two classes, .list-inline
and .list-inline-item
.
- This is a list item.
- And another one.
- But they're displayed inline.
Description list alignment
Align terms and descriptions horizontally by using our grid system’s predefined classes (or semantic mixins). For longer terms, you can optionally add a .text-truncate
class to truncate the text with an ellipsis.
- Description lists
- A description list is perfect for defining terms.
- Term
-
Definition for the term.
And some more placeholder definition text.
- Another term
- This definition is short, so no extra paragraphs or anything.
- Truncated term is truncated
- This can be useful when space is tight. Adds an ellipsis at the end.
- Nesting
-
- Nested definition list
- I heard you like definition lists. Let me put a definition list inside your definition list.
Inline code
Wrap inline snippets of code with <code>
. Be sure to escape HTML angle brackets.
For example,
<section>
should be wrapped as inline.
Code blocks
Use <pre>
s for multiple lines of code.
<p>Sample text here...</p>
<p>And another line of sample text here...</p>
Variables
For indicating variables use the <var>
tag.
y = mx + b
User input
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 + ,
Sample output
For indicating sample output from a program use the <samp>
tag.
This text is meant to be treated as sample output from a computer program.
Address
The <address>
element is updated to reset the browser default font-style
from italic
to normal
. line-height
is also now inherited, and margin-bottom: 1rem
has been added. <address>
s are for presenting contact information for the nearest ancestor (or an entire body of work). Preserve formatting by ending lines with <br>
.
Twitter, Inc.
1355 Market St, Suite 900
San Francisco, CA 94103
P: (123) 456-7890 Full Name
first.last@example.com
Summary
The default cursor
on summary is text
, so we reset that to pointer
to convey that the element can be interacted with by clicking on it.
Some details
More info about the details.
Even more details
Here are even more details about the details.