Make My Own Web Page

Free HTML Code Reference

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>


Make Your Own Web Site HTML Reference


Phone: (208)467-6236
FAX: (208)463-9363
mtg@makemyownwebpage.com
mtg@makemyownwebpage.com
MTG EnterPrizes
511-9th Ave. N.
Nampa, Id 83687-3347

Page Created and
Maintained by
MTG EnterPrizes
All Rights Reserved © 2002-08
www.makemyownwebpage.com/ref/lists.htm