Structure

The two tags reviewed here will help you structure your pages. Lists can also define the internal sections of a document, but for purposes of clarity, they are treated in a separate page; select this link to learn more about: Lists.

 

  • The Heading <H#>:

    This tag displays its content in a larger font. There are 6 possible levels, 1 being the largest and 6 the smallest. Here are the examples:
The code:
The result:
<H1>Heading 1</H1>

Heading 1

<H2>Heading 2</H2>

Heading 2

<H3>Heading 3</H3>

Heading 3

<H4>Heading 4</H4>

Heading 4

<H5>Heading 5</H5>
Heading 5
<H6>Heading 6</H6>
Heading 6

 

  • Indenting with <BLOCKQUOTE>:

    This tag allows you to indent text to the right. You can nest this tag to create further indentations.
The code:

<P>
This line is not indented.
</P>
<BLOCKQUOTE>
This line is indented.
I can write a quote here or
any other information.
Notice how the text gets
indented in relation to the line above.

</BLOCKQUOTE>

The result:

This line is not indented.

This line is indented. I can write a quote here or any other information. Notice how the text gets indented in relation to the line above.