A list is a structured paragraph containing a series of items. HTML defines three types of lists:
| Container | Type of List | Visual Effect |
|---|---|---|
<ol>
</ol> |
Ordered List |
|
| Container | Type of List | Visual Effect |
|---|---|---|
<ul>
</ul> |
Unordered |
|
| Container | Type of List | Visual Effect |
|---|---|---|
<dl>
</dl> |
Definition |
|
| Attribute | Value | Visual Effect |
|---|---|---|
| COMPACT | tightens line spacing (more compact list) |
|
| PLAIN | removes bullets | |
| SEQNUM | defines the first number | |
| START | defines the first number | |
| CONTINUE | starts at the number where the last list left off |
|
| TYPE (for ordered lists) | 1 A a I i |
Arabic numerals (default) Uppercase letters Lowercase letters Roman numerals (I, II, III, IV ...) Lowercase Roman numerals |
| TYPE (for unordered lists) | circle square disc |
|