Hindi, asked by AAKN, 1 year ago

write HTML code to create the following ordered list ,,,,,x.xylophone.

y.yak
z.zebra

Answers

Answered by PrajwalRatnaparkhi
127
<HTML>
<head> <title>Ordered list or numbered list
</title> </head>
<body> musical instrument & animals
<ol>
<li> xylophone
<li> yak
<li> zebra
</ol>
</body>
</html>
Answered by qwcricket10
5

Q)  Write the HTML to create the following ordered list.

X. Xylophone

Y. Yak

Z. Zebra

An ordered list typically is a numbered list of items.

  • When some numbers or notations are used to display the order number of items in a list.
  • Those indexes can be numbers, characters, or any other notations.
  • The tag used for the creation of the ordered list is <OL> and </OL>
  • Here, the ordered list type is character and also starts with character X, ie, number 24.
  • Therefore, the HTML code will be;
  • " <OL TYPE ="A" < LI VALUE = "24" > Xylophone <LI> Yak <LI> Zebra </OL> "

#SPJ3

Similar questions