HTML Lists Web developers can organize a collection of similar elements into lists using HTML lists. Example An unordered HTML list: Item Item Item Item An ordered HTML list: First item Second item Third item Fourth item Unordered HTML List A list that is not sorted begins with the <ul> tag. The <li> tag comes first on every list item.By default, the list elements will be indicated with bullets, which are tiny black circles: Example Water Ice Air Ordered HTML List The <ol> tag indicates that the list is sorted. The <li> tag comes first on every list item.By default, numbers will be used to indicate the list items: Example Water Ice Air HTML Description Lists Lists of descriptions are also supported by HTML.A list of terms along with a definition for each phrase is called a description list.The description list is defined by the <dl> tag, terms are defined by the <dt> tag and each term is described by the <dd> tag: Example Tea - black hot drink Milk - white cold drink HTML List Tags Tag Description <ul> Defines an unordered list <ol> Defines an ordered list <li> Defines a list item <dl> Defines a description list <dt> Defines a term in a description list <dd> Describes the term in a description list ArticlesLists Unordered Lists Ordered Lists Other Lists Tagged:HTML