| Depr. | Empty | Version |
|---|---|---|
| No | No | HTML 3.2 |
| IE5.5+ | FF1+ | SA1.3+ | OP9.2+ | CH2+ |
|---|---|---|---|---|
| Full | Full | Full | Full | Full |
Syntax
Description
The h6
element is used to indicate a heading whose level of importance is
exceeded by h1, h2,
h3, h4, and h5
(or to look at it another way, it has the lowest level of
importance). A document may have several h6 elements,
all of which share the same level of importance. The default heading size
is shown in Figure 1.
In total, we have six heading levels to choose
from—h1 to h6—to add structure to
the web page. h1 is the highest heading level (and, by
default, the largest in terms of font size) and h6 the
lowest (and smallest).
A document’s first heading should be an
h1, followed by one or more h2
headings; each of these h2 headings can then have a
further series of h3 headings below them, and so on,
right on down to heading level 6. The HTML 4 spec states that heading
levels should not be skipped (that is, you shouldn’t have a series of
headings in the order h1, h2,
h2, h4, which skips the
h3 entirely), although it isn’t always possible to
guarantee such rigidity in the markup, particularly if your pages are
generated by a CMS. However, this goal is certainly one for which you
should aim.
Headings add semantic richness to a document, which can help with search engines’ understanding of the makeup of that document, and provide users of assistive devices (such as screen readers) with an additional—and quick—method by which to navigate through a document: they can skip from heading to heading.
Example
In this example, an
h6 element is used to define a section
heading:
<h6>Points of Contact</h6>
Use This For …
This element may contain any text content, but it can’t include any block-level elements: only inline or phrase elements can be included.
Compatibility
| Internet Explorer | Firefox | Safari | Opera | Chrome | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 5.5 | 6.0 | 7.0 | 8.0 | 1.0 | 1.5 | 2.0 | 3.0 | 3.5 | 1.3 | 2.0 | 3.1 | 4.0 | 9.2 | 9.5 | 10.0 | 2.0 |
| Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full | Full |
The
h6 element suffers no compatibility issues: all
browsers listed support it.
In this Section
- align
aligns the content inside h6 element
User-contributed notes
Add a note
To post a note on this topic, please log in with your SitePoint username and password. If you don't have an account yet, you can create a new account for free.