List elements

An ordered list must begin with the <OL> end with </OL>. Each element of the list has to start with <LI>.

The ordered list is used to present a numbered list of items, sorted by sequence or order of importance.

An unordered list must begin with the <UL> end with </UL>. Each element of the list has to start with <LI>.

<OL>

<LI> First element

<LI> Second element

</OL>

Lists

A definition list is a list of terms and corresponding definitions.

Definition lists are typically formatted with the term flush-left and the definition, formatted paragraph style, indented after the term.

 

 

<DL>

<DT>Term 1

<DD>Definition of the first term.

<DT>Term 2

<DD>Definition of the second term.

</DL>

Definition Lists