+ 2
What steps are to be taken to understand which list is to be used ?
5 odpowiedzi
+ 3
if you want to enumerate something or make a list kinda things to do use ol(ordered list) that haves numbers for each one, it looks like this:
<ol>
<li>text<li>
</ol>
if you want to make a list that doesn't needs an order use ul(unordered list) that looks like this:
<ul>
<li>text<li>
</ul>
if you want to add more than one item just add more <li> tags
+ 5
@Pedro there is also description lists.
https://webplatform.github.io/docs/guides/html_lists/
+ 4
Lists are used for various purposes. I think this can help you.
https://webplatform.github.io/docs/guides/html_lists/
+ 3
Thanks for the answer .
+ 3
Akash and Pedro