I'm a complete novice trying to write some xhtml 1.0 transitional script, so I apologize for asking such a simple-minded question. When trying to validate my page on w3c markup validator, I'm running into a error when making an unordered list. The script listed below passes validation - but I want it to display in the following font: <font face="Arial, Helvetica, sans-serif" size="2"></font> My question is where do I add this? Do I have to add the <font> element to each and every <li> line? Or is there a way to just specify the font style once for the entire list? I am opting for the latter, but that is where I am running into trouble in the markup validator. Thank you for your help! Red Unordered List: <ul> <li>Division I <ul> <li>Mr. A, 3 dan, 4-0</li> <li>Mr. B, 3 dan</li> </ul> </li> <li>Division II <ul> <li>Mr. A, 3 dan, 4-0</li> <li>Mr. B, 3 dan</li> </ul> </li> <li>Division III <ul> <li>Mr. A, 3 dan, 4-0</li> <li>Mr. B, 3 dan</li> </ul>