#HTML's headings
HTML headings have six levels, marked by the tags <h1>
, <h2>
, <h3>
, <h4>
, <h5>
, and <h6>
.
- Generally, a page should have only one
<h1>
heading - Heading levels should be used sequentially without skipping levels
- Do not use headings just to create bold or large text
<h1> Heading Level 1 </h1>
<h2> Heading Level 2 </h2>
<h3> Heading Level 3 </h3>
<h4> Heading Level 4 </h4>
<h5> Heading Level 5 </h5>
<h6> Heading Level 6 </h6>
HTML Headings
Heading Level 1
Heading Level 2
Heading Level 3
Heading Level 4
Heading Level 5
Heading Level 6