Should We add Ordered List to our Webpage?
As we know, lists are an important pillar in HTML and HTML Tags. We can make a list which will helps users to understand the content more easily and more clearly. This will in turn helps us to grow our business when things are written clearly.
Example code of HTML list is:-
<!DOCTYPE html>
<html>
<body>
<h1>ol Element</h1>
<ol reversed="reversed">
<li>Tree</li>
<li>Car</li>
<li>Milk</li>
</ol>
<ol start="3">
<li>Tree</li>
<li>Car</li>
<li>Milk</li>
</ol>
</body>
</html>
Some important HTML tags are:-
Top comments (0)