coding of ordered list
Answers
Answered by
21
Hey mate Here Your answer✍️
➡️Ordered list in Html means things written is serial Number.
Like1.dog,2.cat
For Coding Ordered List Start with OL
<html>
<body>
<h6>My pets Name<hz>
<ol>
<li>Dog</li>
<li>Cat</li>
<li>Parrot</li>
<li>Rabbit</li>
</ol>
</body>
</html>
Your Output be like⬇️⬇️⬇️
➡️Ordered list in Html means things written is serial Number.
Like1.dog,2.cat
For Coding Ordered List Start with OL
<html>
<body>
<h6>My pets Name<hz>
<ol>
<li>Dog</li>
<li>Cat</li>
<li>Parrot</li>
<li>Rabbit</li>
</ol>
</body>
</html>
Your Output be like⬇️⬇️⬇️
Answered by
1
<html>
<body>
<h2>An Ordered HTML List</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
This will be the output
Attachments:
Similar questions