web safe fonts

I

Ian Hurst (Troyka)

is there a list of web safe standard fonts?
ones that will work on every computer (well almost every)
 
D

Dylan Parry

SpaceGirl said:
See the post above :)

Quote:

"I guess Arial is the most striking of the web fonts you can use. All the
other fonts which are available for web sites (pretty much: arial, times,
courier, verdana, tahoma) are too um.. curly. You cant use any other fonts
because you can't guarantee people have them installed on their machines."
-- SpaceGirl

Just in case the post above is not above ;)
 
L

Leif K-Brooks

Ian said:
is there a list of web safe standard fonts?
ones that will work on every computer (well almost every)

serif, sans-serif, cursive, fantasy, monospace. Anything else is just a
guess.
 
J

Jukka K. Korpela

Leif K-Brooks said:
serif, sans-serif, cursive, fantasy, monospace. Anything else is
just a guess.

Actually, the generic fonts are even more of a guess. If you set
font to Arial, you are in principle referring to a specific font family
you can know. The browser may ignore your <font face="Arial"> or
font-family: Arial, of course. When you set font-family: sans-serif,
you are, by definition, asking the browser use the "typical" sans-serif
that _it_ chooses (maybe as instructed by the user). And
unfortunately browsers do this rather poorly, with sometimes
strange ideas of "typical". Besides, in reality, you are also asking
for browser bugs - they have some oddities in handling declarations
with generic font names.

Setting fonts is tricky. Typography is difficult, and the Web as an
environment is in many ways hostile to typography. There's very little
we can do with any safety.

Here's a simple approach (in CSS):

@media screen { body { font-family: Arial, sans-serif; } }
@media print { body { font-family: "Times New Roman", serif; }
h1, h2, h3, h4, h5, h6, caption {
font-family: Arial, sans-serif; } }

This shouldn't do much harm, and it probably improves the overall
appearance on the average.

For pages with more or less literary content (as opposite to
technical), font-family: Georgia for copy text might work well - it's
nice both on screen and on paper, and it's fairly widely available. And
when it's not, the browser default is probably at least tolerable.
 
D

Dylan Parry

Mark said:
Indeed. It's below here (and there are a couple of posts in between).
:)

There is of course the fact that the post was also not 100% accurate, but
I shan't go into that now :)
 
T

Toby A Inkster

Jukka said:
Actually, the generic fonts are even more of a guess. If you set
font to Arial, you are in principle referring to a specific font family
you can know.

Even that's guess-work I'm afraid.

The Arial that comes with AbiWord is quite different from the Arial that
comes with, say, Windows.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Using unusual fonts 8
Web fonts 15
Fonts 7
Baby X fonts 0
Mapping My Path in Java Web Development: Crafting a Detailed Roadmap 0
"Web safe" a thing of the 90's? 6
Fonts 7
Measuring a string of text 1

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top