Simple List Style
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*/
}