Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > Fonts

Reply
Thread Tools

Fonts

 
 
Gyps
Guest
Posts: n/a
 
      12-08-2007
I'm sorry - this has probably been discussed before, but I didn't find it:

I wonder whether there is a way to make a browser use fonts from a server
instead of the installed system-fonts. Since this is such an obvious
feature I cannot believe it has never been implemented in html/css ?
 
Reply With Quote
 
 
 
 
+mrcakey
Guest
Posts: n/a
 
      12-08-2007
Gyps wrote:
> I'm sorry - this has probably been discussed before, but I didn't find it:
>
> I wonder whether there is a way to make a browser use fonts from a server
> instead of the installed system-fonts. Since this is such an obvious
> feature I cannot believe it has never been implemented in html/css ?


The W3C keeps going round about on it. I don't think it's going to be
here any time soon. There's this tool:

http://www.mikeindustries.com/sifr

which replaces text inline using Flash, but it's not recommended for
replacing lots of text. It has the advantage that the text it replaces
remains in the document so that the user can select it and search engine
bots can read it. Otherwise it's not much over using normal Flash or an
image.

Oh, and it only works where users have Flash enabled!

+mrcakey
 
Reply With Quote
 
 
 
 
Jukka K. Korpela
Guest
Posts: n/a
 
      12-08-2007
Scripsit Gyps:

> I'm sorry - this has probably been discussed before, but I didn't
> find it:


Try smarter. Consulting FAQs is not a bad idea. Or maybe
http://groups.google.com/advanced_search with group restricted to
alt.html and using imaginative search words like
fonts server

> I wonder whether there is a way to make a browser use fonts from a
> server instead of the installed system-fonts. Since this is such an
> obvious feature I cannot believe it has never been implemented in
> html/css ?


It would obviously help many authors to make their pages even worse
crap, that's for sure.

The technique is called WEFT (IE-only, and works only if permitted by IE
settings), and despite repeated requests, its proponents have not been
able to present a single real-life example of its use. "Real-life" means
anything but pages that have been contrived to demonstrate the
technique, using dummy content or content that babbles about WEFT.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

 
Reply With Quote
 
zach
Guest
Posts: n/a
 
      12-08-2007
Gyps wrote:
> I'm sorry - this has probably been discussed before, but I didn't find it:
>
> I wonder whether there is a way to make a browser use fonts from a server
> instead of the installed system-fonts. Since this is such an obvious
> feature I cannot believe it has never been implemented in html/css ?


This is a bad idea for several reasons. First, after a system
(especially windows) gets over a certain amount of fonts it will start
slowing down. Can you imagine if all the websites you viewed started
downloading fonts onto your computer? Soon it would start running really
slow.

For accessibility the best way at this point if you want to use a font
for a heading or title or some other small amount of text is to use the
image replacement technique.

Basically you use css to place a negative text indent which causes the
block in which the text is placed to remain as is except the text itself
is moved off the screen, thus when you place a background image of the
text it shows without any other text over it because its hidden off screen.
 
Reply With Quote
 
+mrcakey
Guest
Posts: n/a
 
      12-09-2007
zach wrote:
> Gyps wrote:
>> I'm sorry - this has probably been discussed before, but I didn't find
>> it:
>>
>> I wonder whether there is a way to make a browser use fonts from a server
>> instead of the installed system-fonts. Since this is such an obvious
>> feature I cannot believe it has never been implemented in html/css ?

>
> This is a bad idea for several reasons. First, after a system
> (especially windows) gets over a certain amount of fonts it will start
> slowing down. Can you imagine if all the websites you viewed started
> downloading fonts onto your computer? Soon it would start running really
> slow.
>
> For accessibility the best way at this point if you want to use a font
> for a heading or title or some other small amount of text is to use the
> image replacement technique.
>
> Basically you use css to place a negative text indent which causes the
> block in which the text is placed to remain as is except the text itself
> is moved off the screen, thus when you place a background image of the
> text it shows without any other text over it because its hidden off screen.


AFAIK, Opera is the only mainstream browser (on Windoze at least) that
resizes images when adjust text size. So this solution is only the best
way for accessibility in terms of users with screen readers. Those
without, who simply want to increase the text size will be left with an
illegible image, unless they use their own stylesheets, in which case
you'll end up with the text duplicated.

I think you just have to put your preferred font at the head of the
font-family list and hope that the user has it installed. I'd love all
my sans-serifs to be Helvetica, but it's just not possible, so when I
want a sans-serif font, I always use Helvetica, Arial, sans-serif. It's
the only way really.

+mrcakey
 
Reply With Quote
 
Gyps
Guest
Posts: n/a
 
      12-09-2007
Am Sat, 08 Dec 2007 10:43:05 +0000 schrieb +mrcakey:

> Gyps wrote:
>> I'm sorry - this has probably been discussed before, but I didn't find it:
>>
>> I wonder whether there is a way to make a browser use fonts from a server
>> instead of the installed system-fonts. Since this is such an obvious
>> feature I cannot believe it has never been implemented in html/css ?

>
> The W3C keeps going round about on it. I don't think it's going to be
> here any time soon. There's this tool:
>
> http://www.mikeindustries.com/sifr
>
> which replaces text inline using Flash, but it's not recommended for
> replacing lots of text. It has the advantage that the text it replaces
> remains in the document so that the user can select it and search engine
> bots can read it. Otherwise it's not much over using normal Flash or an
> image.
>
> Oh, and it only works where users have Flash enabled!
>
> +mrcakey


Thanks for your help. So far I have tried to avoid Flash. Maybe I find
another workaround.
 
Reply With Quote
 
Gyps
Guest
Posts: n/a
 
      12-09-2007
>> I'm sorry - this has probably been discussed before, but I didn't
>> find it:

>
> Try smarter. Consulting FAQs is not a bad idea. Or maybe
> http://groups.google.com/advanced_search with group restricted to
> alt.html and using imaginative search words like
> fonts server


Or just: try it less lazily. I could have done that, but I didnt have much
time when I started the thread, so I took the easiest way.. Shame on me.
But thanks for replying nevertheless.

>> I wonder whether there is a way to make a browser use fonts from a
>> server instead of the installed system-fonts. Since this is such an
>> obvious feature I cannot believe it has never been implemented in
>> html/css ?

>
> It would obviously help many authors to make their pages even worse
> crap, that's for sure.


This applies to any powerful web-technology.

> The technique is called WEFT (IE-only, and works only if permitted by IE
> settings), and despite repeated requests, its proponents have not been
> able to present a single real-life example of its use. "Real-life" means
> anything but pages that have been contrived to demonstrate the
> technique, using dummy content or content that babbles about WEFT.


IE-only.. unfortunatly not what I look for, even if it would sound more
reliable than this.
 
Reply With Quote
 
Gyps
Guest
Posts: n/a
 
      12-09-2007

>> I wonder whether there is a way to make a browser use fonts from a server
>> instead of the installed system-fonts. Since this is such an obvious
>> feature I cannot believe it has never been implemented in html/css ?

>
> This is a bad idea for several reasons. First, after a system
> (especially windows) gets over a certain amount of fonts it will start
> slowing down. Can you imagine if all the websites you viewed started
> downloading fonts onto your computer? Soon it would start running really
> slow.


I would prefer a browser to download the font and being able to use it
until the cache is emptied - without having to bother the system with it.

> For accessibility the best way at this point if you want to use a font
> for a heading or title or some other small amount of text is to use the
> image replacement technique.


Hm. Images are not a good solution, because its a lot of text and even more
will be added on a regular basis.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Fonts suddenly unreadable in IE 6.0 - All other system fonts appear normal Emily Computer Support 3 06-09-2005 04:52 AM
asp fonts problems (chinese fonts become ??????) sam ASP General 0 06-06-2004 06:15 AM
mozilla installation changes explorer fonts? pj Firefox 1 05-26-2004 12:09 PM
Absurd fonts... :( ::spidernik:: Firefox 1 11-24-2003 06:29 PM
Re: firebird fonts horrible and thin Gunther Firefox 1 07-19-2003 01:10 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57