KnowledgeBoat Logo

Computer Applications

Write HTML code to create the following ordered list :

    X. Xylophone
    Y. Yak
    Z. Zebra

HTML Advanced Features

50 Likes

Answer

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

Answered By

24 Likes


Related Questions