Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 3.07 KB

README.markdown

File metadata and controls

50 lines (38 loc) · 3.07 KB

Web Font Repository

License:

Dual licensed under MIT or GPL Version 2.0 by Ben Kulbertis

Description:

Writing out @font-face declarations can be tiring and annoying, especially if you are using a lot of them. With this software, you can create all the declarations once, and then use them on all your sites as if they were web safe fonts. It has a built in http refferer authentication system, so the only sites that can use the fonts are ones that you specify.

Installation:

  1. Optimally create a subdomain called fonts.yourdomain.com or something like that, you can however create a subdirectory if you wish.
  2. Upload the "fonts" directory as well as the index.php, default.html, and whitelist.txt files.
  3. Rename the "fonts" directory to something difficult to guess, you don't have to remember it so make it gibberish.
  4. Open index.php and change "fonts" on line 3 to the same thing you just renamed the fonts directory to.
  5. Open whitelist.txt and add each domain that you want to allow to use the fonts in the repository to a new line.
  6. Open font-face.css and run a find and replace all with your text editor, replacing "http://example.com/" with your domain, be sure it begins with "http://" and has a trailing slash.
  7. Add <link rel="stylesheet" href="http://**repository-location**/?file=font-face.css" type="text/css" /> to all the allowed domains.
  8. Use any of the fonts in the repository freely on any of the allowed sites as if they were web safe, they will work automatically. No need for any more @font-face declarations!
  9. Optionally change the look of the default.html page or remove the last line from index.php. This exists so that if someone visits the repository location without a ?file=* at the end, they will see something other than a white screen.

Adding More Fonts:

  1. Create a folder called the font name in the "secret directory" previously called "fonts".
  2. Place the font files in the folder, optimally a .woff, .ttf, .eot, and .svg.
  3. Open the font-face.css file and add the following:
    @font-face {
            font-family: 'Font-Name';
            src: url('http://repository-location/?file=font-dir/font-file.eot');
            src: local('☺'), url('http://repository-location/?file=font-dir/font-file.woff') format('woff'), url('http://repository-location/?file=font-dir/font-file.ttf') format('truetype'), url('http://repository-location/?file=font-dir/font-file.svg#the-svg-id') format('svg');
            font-weight: normal;
            font-style: normal;
          }
  4. Edit in the correct information to the @font-face declaration, changing the "font-family" name, the "repository-location" for each, the "font-dir" for each, the "font-file" for each, and the svg id at the end of the svg url.
  5. Use your new font!

Attribution:

Some of the authentication system code comes from "How To Prevent Hotlinking With PHP" by Stephen Morley.

More Help/Questions:

ben@kulbertis.org