Answers for "how to create lis with 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
2

li html

<ol>
  <li>something</li>
  <li>something</li>
</ol>
or
<ul>
  <li>something</li>
  <li>something</li>
  <li>something</li>
</ul>
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language