Computer Science, asked by abcdefghij69, 6 months ago

how will you nest an unordered list inside an ordered list ​

Answers

Answered by varisha31
1

<ol>

  <li>Coffee Latte</li>

  <li>Tea

    <ul>

      <li>Cardamom tea</li>

      <li>Lemon tea</li>

    </ul>

  </li>

  <li>Hot chocolate</li>

</ol>

Explanation:

here tea has sub items as unordered list. remember all lists acts similar to brackets. so if u { () () [ < > < > ] () }. the 3rd bracket represents ol and square brackers are for ul

Similar questions