HTML allows you to add headings into a web page. Headings may look different on each browser.
There are six headings tag.
Syntax
<h1>..</h1>
<h2>..</h2>
<h3>..</h3>
<h4>..</h4>
<h5>..</h5>
<h6>..</h6>
Example
<h3 align="left">Heading3</h3>
Note
- All headings should have the ending tag
- All headings are rendered on a new line leaving an extra space after the previous block.
- The align attribute can have the values "left", "center", "right" or "justify". The default value is "left"