3.2 NS IE TV

<UL>...</UL>

Create an unordered list of items, where unordered means the individual items are not numbered, but have a bullet in front of them. If you want numbered items use an ordered list.
The items in the list are identified with the LI tag.

COMPACT
3.2
Show the list in a compact way, taking up less space.

TYPE
3.2 NS TV
The default unordered list has a default progression of bullet types that changes as you move through indented levels. From a solid disc, to a circle to a square.
You can change this default using the TYPE attribute. Allowed values for TYPE are CIRCLE, DISC, and SQUARE.

 
Source:
A simple unorderd list :
<UL>
 <LI>The first item of the list.
 <LI>The second item of the list.
</UL>
 
Result: A simple unorderd list :
  • The first item of the list.
  • The second item of the list.

 
Source:
Nested unordered lists with assigned types :
<UL TYPE=SQUARE>
 <LI>The first item of the list.
 <LI>The second item of the list.
 <UL TYPE=DISC>
  <LI>The first item of the nested list.
  <LI>The second item of the nested list.
 </UL>
</UL>
 
Result: Nested unordered lists with assigned types :
  • The first item of the list.
  • The second item of the list.
    • The first item of the nested list.
    • The second item of the nested list.


Statistics Copyright © 1996, 1997 Rob Schlüter
Last updated 1997/05/01
Email: schluter@knoware.nl