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>
  1. One
  2. Two
  3. Three
  4. Four
<menu> <li> One <li> Two <li> Three <li> Four </menu>
  • One
  • Two
  • Three
  • Four
  • <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.
    Carnegie Mellon Computer Science mwm@cs.cmu.edu
    No Next, Up, Prev,