ipfc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
li.
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
 <li>
 
The li tag starts a list item in an ordered, unordered, or simple list. A
list item consists of a one or more lines of text. For two-column lists, the
li tag generates a number or symbol in the left column and places subsequent
text in the right column. The tag may be used only in conjunction with lists
created using the ol, ul, and sl tags.
 
This tag does not use parameters.
 
Example
 
This example uses the li tag to start list items in an ordered list:
 
    To remove a disk
    <ol>
    <li>Open drive door.
    <li>Remove disk.
    <li>Put disk in safe place.
    </ol>
 
When displayed, the ordered list looks like this:
 
    To remove a disk
 
    1. Open drive door.
 
    2. Remove disk.
 
    3. Put disk in safe place.
 
See Also
 
 ol, sl, ul
 
                                      ♦