View Single Post
  #15 (permalink)  
Old 11-04-2010, 10:00 AM
jurwanwall jurwanwall is offline
Member
 
Join Date: Nov 2010
Posts: 85
jurwanwall is on a distinguished road
HTML offers authors several mechanisms for specifying lists of information. All lists must contain one or more list elements. Lists may contain:

* Unordered information.
* Ordered information.
* Definitions.

The previous list, for example, is an unordered list, created with the UL element:

<UL>
<LI>Unordered information.
<LI>Ordered information.
<LI>Definitions.
</UL>
Reply With Quote