References

Collection of references for web development.

HTML h1 tag

Description

The HTML <h1> element represents a heading, <h1> being the highest and <h6> being the lowest. You should only use one <h1> tag per section.

Example

<h1>This is heading 1</h1>
<h2>This is heading 1</h2>
<h3>This is heading 1</h3>
<h4>This is heading 1</h4>
<h5>This is heading 1</h5>
<h6>This is heading 1</h6>