CBSE Class 10 Computer Applications Question 92 of 125

HTML II — Images, Links and Tables — Question 6

Back to all questions
6
Question

Question 6

Write HTML code to create the following ordered list :

    X. Xylophone
    Y. Yak
    Z. Zebra

Answer
<OL TYPE = "A" START = "24">
<LI> Xylophone </LI>
<LI> Yak </LI>
<LI> Zebra </LI>
</OL>