HTML Heading

Headings in HTML
<h1> to <h6> tags are used in HTML for heading
largest heading tag in HTML is h1 and the smallest heading tag is h6. That’s why h1 tag is used for most important heading tag and h6 tag is used for least important tag.

Example
<h1>H1 heading </h1>
<h2>H2 heading </h2>
<h3>H3 heading </h3>
<h4>H4 heading </h4>
<h5>H5 heading </h5>
<h6>H6 heading </h6>

Leave a Reply

Your email address will not be published. Required fields are marked *