find out the list used in the below HTML page and explain with your own example.
Attachments:
Answers
Answered by
7
Answer:
<html>
<head> </head>
<body>
<ol type ="1">
<li>html</li>
<li>list</li>
</ol>
<ol type="A">
<li>html</li>
<li>list</li>
</ol>
<ol type ="a">
<li>html</li>
<li>list</li>
</ol>
<ol type ="I">
<li>html</li>
<li>list</li>
</ol>
<ol type =i>
<li>html</li>
</ol>
</body>
</html>
Similar questions