Bullets

by shriek

HTML

<ul>
    <li>Hi</li>
    <li>There</li>
</ul>

CSS

ul li{
    list-style-type: none;
}
ul li:before{
    content:"\2022\A0";
}