Search code examples
cssfont-face

CSS font linking


I was wandering how can I link font-family in css to a font in your folder. Like PHP you can use your font in your folder.
Example Code:

CSS:

font-family: verdana;

This is what I mean:

font-family: foldername/font

Is there a code for that? or I have to use PHP to browse my own font?


Solution

  • @font-face {
      font-family: "Kimberley";
      src: url(http://www.princexml.com/fonts/larabie/kimberle.ttf) format("truetype");
    }
    

    Just found this one on "A List Apart", haven't checked myself but this webbie is one of the most respectful resources for designers online so i guess your best shot is to give it a try.