HTML h Header Usage
In HTML we use the h tag for the title. We have options from h1 to h6 for different sizes.
Let's look at usage examples below..
<h1> This title was made using h1 </h1>
<h2> This title was made using h2 </h2>
<h3> This title was made using h3 </h3>
<h4> This title was made using h4 </h4>
<h5> This title was made using h5 </h5>
<h6> This title was made using h6 </h6>
It will look like the following..
This title was made using h1
This title was made using h2
This title was made using h3
This title was made using h4
This title was made using h5
This title was made using h6