list type code example
Example 1: no li style
list-style: none;
Example 2: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
Example 3: html list type
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
list-style-type: decimal;
list-style-type: georgian;
list-style-type: cjk-ideographic;
list-style-type: kannada;
list-style-type: '-';
list-style-type: custom-counter-style;
list-style-type: none;
list-style-type: inherit;
list-style-type: initial;
list-style-type: unset;