quick hack: remove the list item:
<ul> <li>item <li>item <ul> <li>item <li>item <li>item </ul> </ul>
if you do not close the tags, the browser will display them correctly, that is, without an additional bullet. Note: this is valid html since you do not need to close <li> tags.
JSFIDDLE with both examples
source: google
", unlike XHTML, even when delivered with text such as MIME / html - allows authors to omit certain tags."
from google:
if you have a list of items marked as & ltli> List item & lt / li> instead, you can simply write & ltli> List item ...
Omitting optional tags keeps your HTML formally valid ...
source share