Lists


ordered list

Ordered list starts with <OL> tag and ends with </OL> tag. List elements are identified with <LI> tag which needs no end tag.

List can have TYPE attribute. Allowed types are A for capital letters, a for small letters, I for large roman numerals and i for small roman numerals. If no type is given list is numerated with numbers.

Attribute START tells what is the first item number.

Example of ordered list markup:
<OL TYPE=A START=3>
<LI> First list item
<LI> Second list item
</OL>

and how it looks...

  1. First list item
  2. Second list item

un-ordered list

In un-ordered list items are bulleted. With TYPE attribute can be defined bullet type.

Example of un-ordered, nested list markup:
<UL>
<LI> First list item
<LI> Second list item
<UL>
<LI> Third list item, nested
</UL>
</UL>

and it looks like...


definition list

Example of definition list code:
<DL>
<DT> This is term to be defined, i.e. definition title
<DD> This is definition, i.e. definition item
</DL>

and it looks like...

This is term to be defined, i.e. definition title
This is definition, i.e. definition item