Text Headers
Level 1 Header
DescriptionThe tag for this header is <H1>. The starting tag is <H1> and the closing tag is </H1>. This header is used at the top of pages to title the page. Here is an example using the Level 1 Header.
Code
<h1> Hello World! </h1>
Output

Hello World!

Practice
Level 2 Header
DescriptionThe tag for this header is <H2>. The starting tag is <H2> and the closing tag is </H2>. This header is used to separate secondary parts of the page. Here is an example using the Level 2 Header.
Code
<H2> Hello World! </H2>
Output

Hello World!

Practice
Level 3 Header
DescriptionThe tag for this header is <H3>. The starting tag is <H3> and the closing tag is </H3>. Here is an example using the Level 3 Header.
Code
<H3> Hello World! </H3>
Output

Hello World!

Practice
Level 4 Header
DescriptionThe tag for this header is <H4>. The starting tag is <H4> and the closing tag is </H4>. Here is an example using the Level 4 Header.
Code
<H4> Hello World! </H4>
Output

Hello World!

Practice
Level 5 Header
DescriptionThe tag for this header is <H5>. The starting tag is <H5> and the closing tag is </H5>. Here is an example using the Level 5 Header.
Code
<H5> Hello World! </H5>
Output
Hello World!
Practice
Level 6 Header
DescriptionThe tag for this header is <H6>. The starting tag is <H6> and the closing tag is </H6>. Here is an example using the Level 6 Header.
Code
<H6> Hello World! </H6>
Output
Hello World!
Practice
Advertisements