<h?></h?> Header Tags

On this page we will learn to use the <h> tags.

There are 6 h tags, they are specified by a number following the h
<h1></h1>, <h2></h2>, <h3></h3>, <h4></h4>, <h5></h5>, <h6></h6>.

The header tags are used to label a section of the page, similar to naming the chapter in a book. These tags are useful for labeling the most important sections of the page.

They are rated as h1 being the most important and h6 being the least important. When using them be sure to use them in chronological order. Remember these tags are companion tags, don't forget to close the tags

Example;

This sentence labels the most important section of our page.

The HTML;
<h1>This sentence labels the most important section of our page.</h1>

This sentence labels the least important section of our page.

The HTML;
<h6>This sentence labels the least important section of our page.</h6>

Did you notice how the text was already bolded and the size of each tag decreased with importance?