The easiest way is to create a base UL style like you have a then two classes for the two different looking lists.
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />
<title>UL - Bullet Images</title>
<style type=“text/css” media=“all”>
/* Place styles that you want applied to every ul list here */
ul {
margin-left: 15px;
}
/* Place styles that you want applied only to ul list with the ‘list1’ class */
ul.list1 {
list-style: circle;
}
/* Place styles that you want applied only to ul list with the ‘list2’ class */
ul.list2 {
list-style: disc;
}
</style>
</head>
<body>
<ul class=“list1”>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<ul class=“list2”>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</body>
</html>