Computer Science, asked by ms8367786, 7 months ago

write a program display the list of five animal name using <ol> tag?​

Answers

Answered by saksham487
2

Answer:

no sorry I don't want your mob no. ....

thank-you

Saksham Gupta

Answered by Agastya0606
15

Program to display the list of 5 animal name using <ol> tag

program:

<html>

<head>

<title> HTML Ordered List </title>  

</head>

<body>

<ol>

 <li>Tiger</li>

 <li>Lion</li>

 <li>Monkey</li>

  <li>Dog</li>

   <li>Cow</li>

</ol>

</body>

</html>

The above program will output:

1. Tiger

2. Lion

3. Monkey

4. Dog

5. Cow

The <ol> tag is HTML tag that defines an ordered list. An ordered list can be numerical or alphabetical. The <li> tag is used to define each list item. The <body> tag contains all the contents like headings, paragraphs, images, hyperlinks, tables, lists, etc.

Similar questions