Computer Applications

Types of ordered lists.

<HTML>
<BODY>
<H4>Numbered list:</H4>
<OL>
<LI>Apples</LI> 
<LI>Bananas</LI> 
</OL>
<H4>Letters list:</H4>
<OL type="A">
<LI>Apples</LI> 
<LI>Bananas</LI> 
<LI>Lemons</LI> 
<LI>Oranges</LI> 
</OL>
<H4>Lowercase letters list:</H4>
<OL type="a">
<LI>Apples</LI> 
<LI>Bananas</LI> 
</OL>
<H4>Roman numbers list:</H4>
<OL type="I">
<LI>Apples</LI> 
<LI>Bananas</LI> 
</OL>
<H4>Lowercase Roman numbers list:</H4>
<OL type="i">
<LI>Apples</LI> 
<LI>Bananas</LI> 
</OL>
</BODY>
</HTML>

HTML Intro

1 Like

Answer

Output
Types of ordered lists. Practical Assessment. Basic HTML ELements, Computer Applications Code 165 Sumita Arora Solutions CBSE Class 10.

Answered By

3 Likes


Related Questions