dl class html code example
Example 1: html definition list
<dl>
<lh>dl Header</lh>
<dt>Term</dt>
<dd>Definiton</dd>
<dt>Term</dt>
<dd>Definition</dd>
</dl>
Example 2: html description list
<!-- Description lists -->
<!-- They are list of terms with their corresponding definitions -->
<dt>HTML</dt>
<dd>Stands for Hyper Text Markup Language</dd>
<dt>CSS</dt>
<dd>Stands for Cascading Style Sheets</dd>