Lists

Ordered Lists

An ordered list is one where items are numbered starting at 1.
They are also known as Numbered Lists.

For example:

<OL> <LI> Item Number 1 <LI> Item Number 2 <LI> Item Number 3 </OL>

is rendered as ...

  1. Item Number 1
  2. Item Number 2
  3. Item Number 3

NOTES:

For example: <OL> <LI> Item Number 1 <P> <LI> Item Number 2 <P> <LI> Item Number 3 </OL>

is rendered as ...

  1. Item Number 1

  2. Item Number 2

  3. Item Number 3

Unordered Lists

An unordered list is one where each item is introduced by a Bullet Point.

For example:

<UL> <LI>First Item <LI>Second Item <LI>Third Item which has a slightly longer description and may spill over into the following line but nonetheless is aligned correctly. </UL>

is rendered as ...


NOTES:

Nested Lists

A Nested List is one which has more than one level. Each different level can be either an Ordered or Unorderd List.

For example,

<OL> <LI> Ordered List - Item 1 <UL> <LI> Unorderd List - Item 1 <LI> Unorderd List - Item 2 <LI> Unorderd List - Item 3 </UL> <LI> Ordered List Item 2 <UL> <LI> Another Unorderd List - Item 1 <LI> Another Unorderd List - Item 2 <UL> <LI> Yet another Unordered List - Item 1 <LI> Yet another Unordered List - Item 2 </UL> </UL> <LI> Ordered List Item 3 </OL>

is rendered as ...

  1. Ordered List - Item 1
  2. Ordered List Item 2
  3. Ordered List Item 3

NOTES:

Glossary Lists

A Glossary List is one where each list item can (optionally) have its own heading. For example, <DL> <DT>Plain Title <DD>The impact of carbon monoxide on the human body can be far more serious than is generally believed. <P> <DT><STRONG>Emboldened Title</STRONG> <DD>Further work needs to be done to understand the impact of carbon monoxide on the human body. <P> <DT>Last Title <DD>The final item in this list is separated from the previous with a blank line or paragraph break. </DL>

is rendered as ...

Plain Title
The impact of carbon monoxide on the human body can be far more serious than is generally believed.

Emboldened Title
Further work needs to be done to understand the impact of carbon monoxide on the human body

Last Title
The final item in this list is separated from the previous with a blank line or paragraph break.