html list programs definition list code example
Example 1: html ordered list
<ol>
<lh>ol Header</lh>
<li>Item One</li>
<li>Item Two</li>
<li>Item Thre</li>
</ol>
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>