kirupa
1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="stuff, to, help, search, engines, not" name="keywords">
<meta content="What this page is about." name="description">
<meta content="An Interesting Title Goes Here" name="title">
<style>
p {
margin: 10px;
padding: 5px;
}
ul {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 24px;
text-decoration: none;
width: 250px;
padding: 0px;
margin: 0px;
}
ul li {
background-color: #E6E6E6;
background-image: url("http://www.kirupa.com/snippets/examples/images/gray_smiley.png");
background-position: 7px 7px;
background-repeat: no-repeat;
color: #666;
list-style: none outside none;
padding-left: 29px;
}
ul li:nth-of-type(3) {
background-color: #A4BBFF;
background-image: url("http://www.kirupa.com/snippets/examples/images/blue_tongue_icon.png");
color: #003366;
}
</style>
</head>
<body>
<ul>
<li>
<p>Blah</p>
</li>
<li>
<p>Foo</p>
</li>
<li>
<p>Bar</p>
</li>
<li>
<p>Zorb</p>
</li>
<li>
<p>Blarg</p>
</li>
</ul>
</body>
</html>