I am not using flash or php - and I have been asked to add a custom font to a simple html layout. "KG June Bug"
I have it downloaded locally- is there a simple CSS trick to accomplish this?
|
|
|
Yes, you can use the CSS feature named @font-face. It has only been officially approved in CSS3, but been proposed and implemented in CSS2 and has been supported in IE for quite a long time. You declare it in the CSS like this:
Then, you can just reference it like the other standard fonts:
So, in this case,
And you just need to put the JUNEBUG.TFF in the same location as the html file. I downloaded the font from the dafont.com website: |
|||||||||
|
|
http://www.fontsquirrel.com/fontface/generator use the above link to convert your font into compatible webfonts, and refer the included html and css file. |
|||||||||
|
|
You can use @font-face in most modern browsers. Here's some articles on how it works:
Here is a good syntax for adding the font to your app: Here are a couple of places to convert fonts for use with @font-face:
Also cufon will work if you don't want to use font-face, and it has good documentation on the web site: |
|||
|
|
|
Well, if the viewers of your website do not have these custom fonts installed on their computers, they will not be able to view those. If it is for a logo, use an image and add an alt text so that search engines get the content.
There's a list of "browser safe fonts" that will be very likely to be installed by your users: http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html You could nevertheless use javascript libraries such as Cufón or Typeface.js . These libraries let you embed your font in a javascript file that will then manipulate directly the page canvas. More info here: http://kilianvalkhof.com/2009/javascript/cufon-vs-typefacejs-which-one-is-better/ The problem is that the rendered text will not be selectable, which might annoy the users who would want to do some copy-paste. |
|||||
|