HTML Lists
There are four commands for creating lists: UL, OL, MENU, DIR
.
Some examples:
<ul> <li> One <li> Two <li> Three <li> Four </ul>
<ol> <li> One <li> Two <li> Three <li> Four </ol>
- One
- Two
- Three
- Four
<menu> <li> One <li> Two <li> Three <li> Four </menu>
<dir> <li> One <li> Two <li> Three <li> Four </dir>
One Two Three Four
DIR
-type lists are supposed to provide a column-fill environment.
That is what happens with MacMosaic, but does not
currently happen with XMosaic.
Another sequence is useful for glossaries:
<DL> <DT> Term <DD> Definition one <DD> Definition two </DL>
- Term
- Definition one
- Definition two
More
information about lists is available.
mwm@cs.cmu.edu