img {
                width: 500px;
            }


ul {
    list-style-type: circle;
}

/* only list items of ordered list, have green text color */
ol li { 
    color: green;
}

/* all list items with class done are styled with disc instead of circle  */
.done {
    list-style-type: disc;
}
