I'm curious about something - when using custom fonts linked with @font-face
, do they require local installation to function properly?
Here is the code I have:
@font-face {font-family:"3dumb";src:url(‘http://static.tumblr.com/wi49tax/8Vmlzz5ja/3dumb.ttf’);}
@font-face {font-family:"2dumb";src:url(‘http://static.tumblr.com/wi49tax/fC0lzz68h/2dumb.ttf’);}
#pages {font-family: "3dumb";
font-size: 2.2em;
}
While this code works on my machine with the font installed (Safari 5.0.5), it doesn't work on any other machines...
I would really appreciate any assistance on this matter!