2
Answers

How can I add (a). (b) with li tag in html

Rajendran S

Rajendran S

2y
571
1

<ol type="a">
                                <li>
                                    Banana
                                </li>
                                <li>
                                    Apple
                                </li>
                                <li>Orange</li>
                                <li>
                                    Mango
                                </li>
</ol>

I Need below result . How write the html code the below output

(a)  .   Banana

(b)  . Apple

(c)  .Organe

Answers (2)