Back Main GuestBook Contact Music (JS) Appendix

<H6></H6> - Level 6 Headings

The browser presents the text between this tag and its closing tag as a heading slightly inferior to Heading 5. This is the lowest heading available in HTML.

This tag must be closed at the end of the heading by typing </H6>.

Attributes for <H6>

  %coreattrs %i18n %events

Presentational Attributes

D align= [CI]
  • "left"
Specifies left alignment.
  • "center"
Specifies centered text.
  • "right"
Specifies right alignment.
  • "justify"
Specifies justified text. If unsupported, reverts to default.
This attribute controls text alignment. The default value is inherited; otherwise, it is left for left-to-right headings and right for right-to-left headings.

Sample:

Level 6 Heading

This is paragraph text.


Here is the code for the sample above:

<H6>Level 6 Heading</H6>
<P>This is paragraph text.</P>