An unordered list is a list of items.
The list items are marked with bullets (typically small black circles).
An unordered list starts with the <ul> tag.
Each list item starts with the <li> tag.
|
|
Ordered List
An ordered list is also a list of items. The list items are marked with numbers. An ordered list starts with the <ol> tag.
Each list item starts with the <li> tag.
|
|
<dl>
tag.
Each definition-list term starts with the <dt> tag.
Each definition-list definition starts with the <dd> tag.
|
|
Tag | Description | Tag | Description | |
---|---|---|---|---|
<ol> |
Defines an ordered list. | <ul> |
Defines an unordered list. | |
<li> |
Defines a list item. | <dl> |
Defines a definition list. | |
<dt> |
Defines a definition term. | <dd> |
Defines a definition description. | |
<dir> |
Deprecated. Use <ul> instead. |
<menu> |
Deprecated. Use <ul> instead. |