HTML Lists

Simple or structured with complexity

  • Unordered List

    The unordered list (or, UL) element represents simple or complex lists depending on the requirements of the document and/or semantic, i.e., explicit, structure of content. This list type does not have stated significance nor hierarchical order for content. It may have presentational elements displayed on its list items, e.g., squares.

  • Ordered List

    The ordered list (or, OL) element represents simple or complex structured lists depending on the requirements of the document and/or semantic, i.e., explicit, structure of content. This list type does have stated significance or hierarchical order for content. It may be numbered.

  • List Item

    The list item (or, LI) element represents an individual item in a list. Ordered, unordered and menu lists use the LI element for content markup which will be rendered and displayed according parsing requirements (as defined by UL, OL or MENU elements). The list item is that mechanism from which simple or complex lists are constructed.

  • Directory List

    This structural element has been deprecated in HTML 4.01 and obsoleted in HTML 5. The DIR element was designed to be used for creating multicolumn directory lists.

  • Directory Element

    The directory element was the LI.

  • Menu List

    The menu list (or, MENU) element has been deprecated in HTML 4.01 but reinstated in HTML 5 which states that the MENU element is redefined to be useful for toolbars and context menus. It represents a list of commands. This element was reinstated as an interactive menu.

  • Menu Element

    The menu element is the LI.

  • Definition List

    The definition list (or, DL) represents a simple or complex structured pseudo-list. This element has been classified as a list and, whereas its content may—Occasionally—contain numerous list items, it has a formal structure: one (1) definition term with one (1) or more definitions.

  • Definition Term

    The definition term (or, DT) represents the term to be defined or it may represent the title of content to be defined. The DT is the first element used in a definition list followed by one (1) or more definition data elements.

  • Definition Description

    The definition description (or, DD) element represents the actual definition of the term or title. The DD is the second element used in a definition list preceded by one (1) definition term element.