W.A.P html program to list the five animal using <ol > tag?
Answers
Answered by
0
Answer:
<!DOCTYPE html>
<html>
<body>
<ol>
<li>Dog</li>
<li>Cat</li>
<li>Deer</li>
<li>Horse</li>
<li>Lion</li>
</ol>
</body>
</html>
Similar questions