CBSE Class 10 Computer Applications Question 66 of 79

Basic HTML Elements — Question 9

Back to all questions
9
Question

Question 9

Write an HTML code to create the following ordered list.

C. Apples
D. Oranges
E. Grapes
Answer
<HTML>
<BODY>
<OL TYPE = "A" START = "3">
<LI>Apples</LI>
<LI>Oranges</LI>
<LI>Grapes</LI>
</OL>
</BODY>
</HTML>