martin2k

The UL Tag

HomeForumTutorials Tags:
 
 

Name

Unordered List

Description

Defines an unordered (bulleted) list.  There are three different types of bullet - filled circle (disc), filled square and unfilled circle.  Multiple LI (list items) tags are contained within this tag to define each item in the list.

UL tags can be nested to create sub lists.

Attributes

TYPE

This can be set to the following to change the type of list:

Value
circle
disc (default)
square

When lists are nested, the type will change automatically.

Related Tags

The LI tag is used within the UL this tag.  The OL (ordered list) tag can be used to create numbered lists instead.

Example

Code

<p>States:</p>

<ul>
  <li>New York</li>
  <li>Iowa</li>
  <li>Massachusetts</li>
  <li>...</li>
</ul>

Generates

States:

  • New York
  • Iowa
  • Massachusetts
  • ...

Please fill in the below form if you have any comments or additional information you want to add about the above information.  If you have any questions, please visit the ForumAny questions sent using this form will be ignored.

* - Mandatory

*Name: E-mail:

*Comments:

*Please type the following code (your comment cannot be accepted without it):


© Martin Allen 1999 - 2006.  Last updated Friday 24 November 2006 07:18:39 PM -0000.