Different between ordered and unordered list with the help of an example
Answers
Answered by
3
Unordered list are basically any point form list like in a word processor using dots to list items;
<HTML>
<HEAD>
<TITLE> Javatechig | List Example </TITLE>
</HEAD>
<BODY>
<H1> Mobile Operating System</h1>
<UL>
<LI> Android
<LI> Blckberry
<LI> iPhone
<LI> Windows Phone
</UL>
<H1>Mobile Manufacturers</h1>
<UL TYPE = "SQUARE">
<LI> Samsung
<LI> HTC
<LI TYPE = "DISC"> Micromax
<LI TYPE = "CIRCLE"> Apple
</UL>
</BODY>
</HTML>
While ordered list are list that categorized the list according to a, b, c or 1, 2, 3.
<HTML>
<HEAD>
<TITLE> Javatechig | List Example </TITLE>
</HEAD>
<BODY>
<H1> Mobile Operating System</h1>
<OL>
<LI> Android
<LI> Blckberry
<LI> iPhone
<LI> Windows Phone
</OL>
<H1>Mobile Manufacturers</h1>
<OL TYPE = "A">
<LI> Samsung
<LI> HTC
<LI> Microma
<LI> Apple
</OL>
</BODY>
</HTML>
Hope you understand...Please mark as brainliest!
Similar questions
English,
7 months ago
Computer Science,
7 months ago
History,
1 year ago
Math,
1 year ago
Math,
1 year ago