When I use the following code, only the last list item is colored blue while the list sign remains uncolored:
<font color="blue">
<li>man
<li>woman
<li>body
<li>girl
<li>baby
</font>
However, when I make use of the next set of code examples, both the list sign and its contents are colored:
<font color="blue">
<li>man
<li>woman
<li>body
<li>girl
<li>baby</li>
</font>
<font color="blue">
<li>man
<li>woman
<li>body
<li>girl
<li>baby
</font>
</li>
And that's the solution. Thanks.