Is there no way to achieve the arial 8pt font in html/css?

Britt babe xxx

New member
<font size="8pt"> Doesn't work... it just goes into size 8. & <font size="1"> doesn't work either... it just goes into size 8px. Is there anyway to have 8pt? It's my favorite font & I want to make it the font of my website...
 
Firstly, you should try using stylesheets instead of tags. But this will work for your needs:

<font style="font-family: arial; font-size: 8pt; ">.....</font>
 
the sizes in html are different.
a size 8 font would probably be a 3.
<font size="3">
for arial font...
<font face="arial">
dont forget to put </font> at the end of text.
also, if font "3" doesn't work, try "2" or "4"
 
Back
Top