|
Syntax : <LI>list item
ORDERED LIST UNORDERED
LIST DEFINITION LIST LIST HEADERS
Syntax : <OL>numbered list</OL>
For example the following code :
<OL>
<LI>list item 1
<LI>list item 2
<LI>list item 3
</OL>
Produces the following list:
- list item 1
- list item 2
- list item 3
LIST ITEM UNORDERED
LIST DEFINITION LIST LIST HEADERS
Syntax : <UL>bulleted list</UL>
For example the following code :
<UL>
<LI>list item 1
<LI>list item 2
<LI>list item 3
</UL>
Produces the following list:
- list item 1
- list item 2
- list item 3
LIST ITEM ORDERED LIST
DEFINITION LIST LIST HEADERS
Syntax : <DL>definition list</DL>
For example the following code :
<DL>
<DT>term list item 1
<DD>definition list item 2
<DD>definition list item 3
</DL>
Produces the following list:
- term list item 1
- definition list item 2
- definition list item 3
LIST ITEM ORDERED LIST
UNORDERED LIST LIST HEADERS
Syntax : <LH>list header</LH>
For example the following code :
<UL>
<LH>List Header</LH>
<LI>list item
<LI>list item
</UL>
Produces the following list:
List Header
- list item
- list item
LIST ITEM ORDERED LIST
UNORDERED LIST DEFINITION LIST
TABLE OF CONTENTS
|