You are here:  NetStrider » Tutorials » HTMLRef » Commands » UL «

HTML Reference Guide

Author: Randy D. Ralph.   In place March 1, 1999.   Copyright © 1999 - 2002 NetStrider.   Presented as a public service.

BACK <UL> Command next

Command Syntax:

<UL command parameters>
  <LI> List Item 1
  <LI> List Item 2
       . . .
</UL>

This command encloses, defines and places an unordered list, i.e., a bullet or "burger dot" list.  Enclosed list items - <LI> - define the elements within the list.

See also:  <DL>, <MENU>, <OL>.

Command Parameters:

type="circle | disc | square"

Defines the the style of the displayed bullet where:

  • circle - produces a hollow dot.
  • disc - produces a solid dot.
  • square - produces a solid square.
The default value is disc.
Example:

<b>
<ul type="square">
  <li>eggs
  <li>butter
  <li>bread
  <li>milk
</ul>
</b>
                  
Yields -
  • eggs
  • butter
  • bread
  • milk
Return to Section S:Z

Return to the List of Commands
Author: Randy D. Ralph.  In place March 1, 1999.  Copyright © 1999 - 2002 NetStrider.  World Rights reserved.