-9

What is the expected code for the given output?

1.(a)fruits
     (i)mango
     (ii)apple)
  (b)vegitables.
Rose
  • 600
  • 5
  • 18

2 Answers2

1
<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

Jimmy Khanh
  • 119
  • 1
  • 8
0

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>