Write HTML code for each, ordered list and unordered list with its all type ( 1,a,A,I etc. and bulled, circle etc.) for List of IIPS, SCSIT, IMS list item. 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>