List - Simple Bullet Pattern
Using a backgnd img
HTML
<ul>
<li>Read emails</li>
<li>Write chapter</li>
<li>Go shopping</li>
<li>Cook dinner</li>
<li>Watch Lost</li>
</ul>
CSS
ul {
margin: 0;
padding: 0;
list-style-type: none; /* should be none, can be used to give bullets, but, not very good bullets are available*/
}
li {
background: url(http://www.mediafire.com/conv/c9b528b9541e127967eda62f79118ef06g.jpg) no-repeat 0 50%;
padding-left: 30px;
}