bullets inn html code example
Example 1: ul li dot seprator
ul li { list-style: none; display: inline; }
ul li:after { content: " \00b7"; }
ul li:last-child:after { content: none; }
Example 2: how to get number list in html
<ol>
<li>Example</li>
<li>Example2</li>
<li>Example3</li>
</ol>