Answers for "how to create 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
8

how to get number list in html

<ol>
<li>Example</li>
<li>Example2</li>
<li>Example3</li>
</ol>
Posted by: Guest on January-18-2020
2

html unordered list

<ul>
  <lh>ul Header</lh>
  <li>Item One</li>
  <li>Item Two</li>
  <li>Item Thre</li>
</ul>
Posted by: Guest on July-16-2020

Code answers related to "how to create a list in html"

Browse Popular Code Answers by Language