<H1>...<H6> Headings

Description
Headings are used to denote the start of a new topic or section of the document and the level of headings usually is proportional to the importance of the paragraph it precedes. The HTML 3.2 specification has set 6 distinct heading levels, <H1> being the highest heading level (also the largest in size) and <H6> being the lowest.

The heading tags only accept 1 attribute - ALIGN. This attribute sets the horizontal alignment of the text heading with respect to the screen. For example, below are headings whose alignments are set to left (default), center, and right respectively.

H3(left)

H3(center)

H3(right)

Syntax
<H1 [ALIGN=left|center|right]>text</H1>

<H2 [ALIGN=left|center|right]>text</H2>

<H3 [ALIGN=left|center|right]>text</H3>

<H4 [ALIGN=left|center|right]>text</H4>

<H5 [ALIGN=left|center|right]>text</H5>

<H6 [ALIGN=left|center|right]>text</H6>