Computer Science, asked by sakshigaulechha03, 11 months ago

Which two tags let you create the (1) unordered list and (2) ordered list

Answers

Answered by rythm1578
1

Answer:

<ul>

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ul>

This tag let you make unordered lists.

Use <ul> tag for unordered or unnumbered list

<ol type="1">

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ol>

This will help you make numbered lists.

Use <ol> with type='1' for numbered

Explanation:

Hope it helps :-)

Answered by sharmaankiya3114
0

Answer:

To create a numbered list also called an ordered list, it is identical to creating an unnumbered list except it uses the <ol> and </ol> Tags.

Similar questions