I am trying to display old HTML2 in modern browsers. The (poorly created) HTML3 code contains the font HTML element with the size attribute. The size of the text was defined in pixels, so size="14" means the user wants the text to be 14px in size.
The W3School documentation specifies that the valid values for the size attribute can only be these "1,2,3,4,5,6,7,+1,+2,+3,+4,+5,+6,+7,-1,-2,-3,-4,-5,-6,-7". So it seems that the font size attribute unit's are not in pixels but em or something?
Is there a way to get the font element to show the font text size in pixel units?
I have tried the following but they dont work in Safari browser:
<font size="14">test</font> // displays in huge text(its not 14px in font size)
<font size="14px">test</font> // looks the same as line 1
<font size="14pt">test</font> // looks the same as line 1
<font size="14em">test</font> // On Firefox the font size is 14px(correct) but on Safari it looks the same as line 1
<font size="14%">test</font> // looks the same as line 1
Maybe if I try to change the DTD of the HTML file it will read HTML3 code?

<font style="font-size:14px;">– Lee Nov 4 '11 at 5:03