There is another list format called Definition List.The standard format is shown below.
<dl>
<dt>Term 1<dd>The definition of team 1
<dt>Term 2<dd>The definition of team 2
<dt>Term 3<dd>The definition of team 3
</dl>
Output :
- Term 1
- The definition of team 1
- Term 2
- The definition of team 2
- Term 3
- The definition of team 3
<DL> -- It enclose all the Definition terms and Definitions of definition list.
<DT> -- It used to display the Definition team in the list.
<DD> -- It used to display the Definition in the list.
Previous Page   Next Page