|
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>
|