What is the expected code for the given output?
1.(a)fruits
(i)mango
(ii)apple)
(b)vegitables.
What is the expected code for the given output?
1.(a)fruits
(i)mango
(ii)apple)
(b)vegitables.
<ol>
<li>
<ol type='a'>
<li>fruits
<ol type='i'>
<li>mango</li>
<li>apple</li>
</ol>
</li>
<li>vegitables</li>
</ol>
</li>
</ol>
Please check now
HERE IS THE CODE FOR YOUR OUTPUT... But once google before asking anything.. This is a small thing..
<html>
<head>
<title>MARKET</title>
</head>
<body>
<ol type="a">
<li> Fruits
<ol type="i">
<li>Mango</li>
<li>Apple</li>
</ol>
</li>
<li>Vegetables</li>
</ol>
</body>
</html>