Answers for "html ordered lists"

1

unordered list html

<ul>
  <li>Your item/tag goes here</li>
  <li>Your second item/tag goes here</li>
  <li>Your third item/tag goes here</li>
</ul>
Posted by: Guest on February-22-2021
1

ordered lists html

<ol>
	<li>Playing Chess</li>
    <li>Coding</li>
    <li>Learning math</li>
</ol>
Posted by: Guest on February-22-2021

Browse Popular Code Answers by Language