[an error occurred while processing this directive]
Headings

This page is part of the WebCom Web Publishing Guide. It demonstrates the use of the heading tag in an HTML document.

There are six levels of headings. The bigger the number, the smaller the size of the resulting text (using a graphical browser). Examples of all six levels, and an example of normal text, are provided below, followed by the tags that produce them. Headings are used to logically organize a page into separate sections for easier comprehension. Lower level headings in turn subdivide each section.


Spacing

Headings automatically create space between them and any text preceeding or following them. Therefore text blocks immediately following them, such as this one, do not need to have paragraph <P></P> tags around them.

Level One Heading

<H1></H1>

This is the highest level heading. It is often used at the beginning of a document.

Level Two Heading

<H2></H2>

This is regular text.

Level Three Heading

<H2></H2>

This is regular text.

Level Four Heading

<H4></H4>

This is regular text.

Level Five Heading
<H5></H5>

This is regular text.

Level Six Heading
<H6></H6>

This is regular text.

[an error occurred while processing this directive]