If we want to use a custome image for bullet points in html we can make this work with a bit of CSS.
CSS
ul.myclass { list-style-image: url('/images/custom_bullet.jpg'); }
HTML
<ul class="myclass"> <li>List item 1</li> <li>List item 2</li> <li>List item 3</li> </ul>