/* Header colors & font-family */
h1 { color: red; font-family: Arial, sans-serif; }
h2 { color: purple; font-family: Georgia, serif; }
h4 { color: green; font-family: "Courier New", monospace; }

/* Paragraph font */
p { font-family: Verdana, sans-serif; }

/* 2 types of unordered list-item markers */
#ullist1 { list-style-type: circle; }
#ullist2 { list-style-type: square; }

/* 2 types of ordered list-item markers w/cascading */
#ollist1 { list-style-type: decimal; }
#ollist2 { list-style-type: lower-roman; }
#ollist2 { list-style-type: upper-roman; }