Apparently, surrounding an ordered list by a font command is illegal.
So how do I specify the font style and size for the list elements?
Putting font tags on each list item works, except that the list
numbers don't display in that font.
Invalid, but it works on all (most?) browsers:
<font face="Arial" size=2>
<ol>
<li>List Item A<br>
<li>List Item B<br>
</ol>
</font>
Valid, but the list numbers aren't displayed in the font:
<ol>
<li><font face="Arial" size=2>List Item A</font><br>
<li><font face="Arial" size=2>List Item B</font><br>
</ol>
So how do I specify the font style and size for the list elements?
Putting font tags on each list item works, except that the list
numbers don't display in that font.
Invalid, but it works on all (most?) browsers:
<font face="Arial" size=2>
<ol>
<li>List Item A<br>
<li>List Item B<br>
</ol>
</font>
Valid, but the list numbers aren't displayed in the font:
<ol>
<li><font face="Arial" size=2>List Item A</font><br>
<li><font face="Arial" size=2>List Item B</font><br>
</ol>
Comment