Styled List

Example styling a list with CSS.

Preview

Code

<style>
li {color:blue;}
</style>

<ul>
<li>First item</li>
<li>Second item</li>
</ul>

More HTML Lists Examples (9)