<h1>–<h6>: The HTML Section Heading elements
The <h1>
to <h6>
HTML elements represent six levels of section headings. <h1>
is the highest section level and <h6>
is the lowest. By default, all heading elements create a block-level box in the layout, starting on a new line and taking up the full width available in their containing block.
Try it
Attributes
These elements only include the global attributes.
Usage notes
Avoid using multiple <h1>
elements on one page
While using multiple <h1>
elements on one page is allowed by the HTML standard (as long as they are not nested), this is not considered a best practice. A page should generally have a single <h1>
element that describes the content of the page (similar to the document's <title>
element).
Note:
Nesting multiple <h1>
elements in nested sectioning elements was allowed in older versions of the HTML standard. However, this was never considered a best practice and is now non-conforming. Read more in There Is No Document Outline Algorithm.
Prefer using only one <h1>
per page and nest headings without skipping levels.
Specifying a uniform font size for <h1>
The HTML standard specifies that <h1>
elements in a <section>
, <article>
, <aside>
, or <nav>
element should render as an <h2>
(smaller font-size
with an adjusted margin-block
), or as an <h3>
if nested another level, and so on.
Note:
There is a proposal to remove this special default style, so that <h1>
always has the same default style. This proposal is currently implemented in Firefox Nightly.
To ensure consistent <h1>
rendering, use the following style rule:
h1 {
margin-block: 0.67em;
font-size: 2em;
}
Alternatively, to avoid overwriting other style rules that target <h1>
you can use