HTML Headings

Html headings are the titles that you want to be displayed on the screen. Remember to use headings accordingly so that the heading of the child section is not bigger than the parent section.

Different headings in Html,

<h1> A Heading. </h1>

<h2> A Heading. </h2>

<h3> A Heading. </h3>

<h4> A Heading. </h4>

<h5> A Heading. </h5>
<h6> A Heading. </h6>

Headings must be used accordingly as it makes the site more organized and the site becomes better recognizable by the search engine. Search Engines look at the headings as the index of the page.

 

Headings size can also be changed by using some CSS,

<h1 style="font-size:60px"> A heading. </h1>