The lists in HTML can be classified into three types, they are:
<!--
Example contain a List tag of html.
It is just create a simple web page in web browser
Note : open note paid and Save this code on notepad with extension of .html
then right click and select option of Open with in Window user ,run with any browser and display output .
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html >
<head >
<title >HTML List Tag </title >
</head >
<body >
<ol type="1">
<li> Apple </li>
<li> Banana </li>
<li> Orange </li>
</ol>
<ol type="A">
<li> Apple </li>
<li> Banana </li>
<li> Orange </li>
</ol>
<ol type="a">
<li> Apple </li>
<li> Banana </li>
<li> Orange </li>
</ol>
<ol type="I">
<li> Apple </li>
<li> Banana </li>
<li> Orange </li>
</ol>
<ol type="i">
<li> Apple </li>
<li> Banana </li>
<li> Orange </li>
</ol>
</body >
</html >