tags:

views:

99

answers:

5

My website uses the font ff-clifford-eighteen-web-pro-1. I want all my text to be displayed using that font even for the users that don't have it installed on their machine.

Is it possible?

+1  A: 

Short answer: you can't

Long answer: you could, but it's not easy and not widely supported. Read this article for more information.

Andreas Bonini
+2  A: 

You can't. If the font is not on the system where the browser is, the font will not be found and cannot be loaded.

You will need to distribute the font to the client systems (if you have the licensing to do that).

Oded
A: 

Here is a link to A million ways to embed custom fonts (and keep typography nerds off your back)

He recommends sIFR3

disown
+1  A: 

I use Cufon. Works great, but you also have to verify licensing.

Tim Ridgely
+4  A: 

You can use the @font-face generator. It allows you to upload your fonts and it will create a nifty .zip download with CSS and all the related files you need to get your custom font working for your site.

http://www.fontsquirrel.com/fontface/generator

They also have a whole lot of licensed font-kits ready for use on your site too:

http://www.fontsquirrel.com/fontface

Another great site that allows you to "lease" licensed fonts is TypeKit.

http://typekit.com/

jessegavin