Answers for "a list in html"

1

how to make list in html

creats an organised list
<ol>
  <li>apple</li>
  <li>mango</li>
  <li>watermelon</li>
</ol>
creats an unorganised list
<ul>
  <li>apple</li>
  <li>mango</li>
  <li>watermelon</li>
</ul>
Posted by: Guest on March-06-2021
0

lists in html

<ol> orderd lists
<ul> unordered lists
<li> add a list
Posted by: Guest on October-03-2021

Browse Popular Code Answers by Language