H1 through H6 TAG and ATTRIBUTES

<H1> thru <H6></H1> thru </H6>

These tags implement six levels of document headings; <H1> is the most prominenet, and <H6> is the least prominent. A blank line is automatically inserted before and after a heading. Headings are always in bold print and no matter what the font size is, headings with the same level number are always the same size as follows: <H1> is equivalent to 24 pt. font size, <H2> is equivalent to 18 pt. font size, <H3> is equivalent to 14 pt. font size, <H4> is equivalent to 12 pt. font size, <H5> is equivalent to 10 pt. font size, <H6> is equivalent to 8 pt. font size,


ATTRIBUTES

ALIGN = "CENTER | JUSTIFY | LEFT | RIGHT"
CLASS = "class name(s)"
STYLE = "style information"

EVENTS

onclick
ondblclick
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup


ALIGN  This attribute specifies the horizontal alignment of the heading with respect to the page. The default value is LEFT.

CLASS  See Cascading Style Sheets (CSS) Information.

STYLE  See Cascading Style Sheets (CSS) information.

Back to Top