how to make bullet point list in html code example
Example 1: how to get number list in html
<ol>
<li>Example</li>
<li>Example2</li>
<li>Example3</li>
</ol>
Example 2: bullet list html
<ul>
<li>Eggs</li>
<li>Pancakes</li>
<li>Jelly</li>
</ul>