DEV Community

Cover image for Should We add Unordered List to our Webpage
Mala
Mala

Posted on

Should We add Unordered List to our Webpage

Should We add Unordered 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:-

<html>
<head>
<title>Unordered List</title>
</head>
<body>
<ul>
<li>Pink</li>
<li>Blue</li>
<li>Black</li>
</ul>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Image description

Some Important HTML Tags are:-

Image description

blockquote Tag
Body Tag
br Tag

Top comments (0)