|
HTML List Tags
Unordered List
The <ul></ul> tags do the unordered lists. These are lists
without any numbering system attached. They do however, separate
individual items very nicely. Each item is predeeded by a bullet icon.
These are also called the HTML bullet lists.
|
Syntax
<UL type=shape>
list-items
</UL>
|
Modifiers
- TYPE=shape
- The type is the shape of the preceeding
bullet in front of each item. Bullet shapes can be
DISC, CIRCLE or SQUARE.
-
|
|
Ordered List
The <ol></ol> tags create an ordered list of items. Each
item is preceeded by a number or letter. This can also be called an
HTML numbered list.
|
Syntax
<OL type=shape start=xx>
list-items
</OL>
|
Modifiers
- TYPE=number-system
- The type is the style of
numbering system you want. Options are: A,
a, 1, I or i.
- START=number
- The number you want to start with,
possibly for continuing a previous list.
|
|
List Item Tags
The <li></li> tags are for individual items used in ordered
or unordered lists.
|
Syntax
<LI type=shape type=number-system>
item
</LI>
|
Modifiers
- TYPE=shape
- The type is the shape of the preceeding
bullet in front of each item. Bullet shapes can be
DISC, CIRCLE or SQUARE.
-
- TYPE=number-system
- The type is the style of
numbering system you want. Options are: A,
a, 1, I or i.
|
|
Definition List
The <dl></dl> tags create a list of definitions.
|
Syntax
<DL compact>
<dt>
list-term
</dt>
<dd>
list-definition
</dd>
</DL>
|
Modifiers
- COMPACT
- Allows the term and definition to be on the same
line.
|
|
List Term
The <dt></dt> tags are part of the definitions list. These
show the term to be defined. The </dt> is optional.
|
Syntax
<DT>
list-term
</DT>
|
|
List Definition
The <dd></dd> tags are part of the definitions list. These
show the definition of the term. The </dd> is optional.
|
Syntax
<DD>
list-definition
</DD>
|
|
|