Although it is easy to see, the HTML is coloured separate from the CSS.
HTML is green < !-- see? --> , and CSS is purple /* see */ .
Lists
<ol> </ol> ordered lists (numbered)
<ul> </ul> unordered lists (bulleted)
<ul class="branded-list"> .branded-list {
<li> item <li> list-style-image: url("image.png");
<li> item </li> list-style-type: none; removes bullets
<li> item </li> margin-left: -10px; removes indentation
<li> item </li> list
</ul> }
Comments