order list and unordered list in html code example
Example 1: html number list
<ol type="1">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ol type="A">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ol type="a">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ol type="I">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ol type="i">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
Example 2: unordered list html
<ul>
<li>Your item/tag goes here</li>
<li>Your second item/tag goes here</li>
<li>Your third item/tag goes here</li>
</ul>
Example 3: html unordered list
<ul>
<li>Item One</li>
<li>Item Two</li>
<li>Item Three</li>
<li>Item Four</li>
<li>Item Five</li>
</ul>
Example 4: html unordered list
<ul>
<lh>ul Header</lh>
<li>Item One</li>
<li>Item Two</li>
<li>Item Thre</li>
</ul>
Example 5: 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>