DEV Community

Cover image for Should We add Ordered List to our Webpage
man_shana
man_shana

Posted on

Should We add Ordered List to our Webpage

Should We add Ordered List to our Webpage?

Image description

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.

Image description

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>
Enter fullscreen mode Exit fullscreen mode

Image description

Some important HTML tags are:-

Image description

Base Tag
bdi Tag
bdo Tag

Top comments (0)