Lists
- <ol> starts an ordered list. This provides a list with some type of numbering: upper-case letters, lower-case letters, digits, upper-case roman numerals, lower-case roman numerals. Setting the type attribute is ignored in the browser.
- <ul> starts an unordered list. This provides a list with bullets to the left of each item.
- <li> adds an item to an ordered or unordered list.
- <dl> starts a definition list. This is a list with two fields per list item. The first is a term and the second is the term's definition.
- <dt> adds a new definition term to a definition list.
- <dd> adds a new term definition to a definition list.