Computer Applications

Differentiate between ordered and unordered lists.

HTML Intro

22 Likes

Answer

Ordered listUnordered list
Ordered list are indented lists that have numbers or letters in front of each item.Unordered list are indented lists with a special bullet symbol in front of each item.
For example,
<OL>
<LI>Apples</LI>
<LI>Bananas</LI>
<LI>Grapes</LI>
</OL>
For example,
<UL>
<LI>Apples</LI>
<LI>Bananas</LI>
<LI>Grapes</LI>
</UL>

Answered By

14 Likes


Related Questions