Computer Science, asked by lokhimondal, 1 year ago

differentiate between order list and unordered list?

Answers

Answered by utkarshtiwari28
19
order list is a list where item are arrange in order.while unordered list is a list where item are not arrange in order
Answered by sakshi7048
56

\underline{\bold{Ordered\:List}}

● each item is displayed along with the numbers for alphabets instead of a bullet .

● entire content of the list is enclosed <OL> and </OL>

For example-

<OL>

<LI> text</LI>

<LI> text</LI>

</OL>

\underline{\bold{Unordered\:List}}

● each item is displayed in the bullet form .

● entire content of the list is include in <UL> and </UL>.

For example-

<UL>

<LI> text</LI>

<LI> text</LI>

</UL>

Similar questions