use of list style type code example
Example 1: css list style
ul { list-style: square; } /* solid square bullets */
ul { list-style: disc; } /* solid circle bullets */
ul { list-style: circle; } /* hollow circle bullets */
ul { list-style: none; } /* no bullets */
Example 2: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>