I'm trying to develop a boilerplate for client site development and am looking for the best way to handle Firefox's quirks in regards to @font-face. The solution I have come up with is to create a "font.php" file with the following:
<style type="text/css" media="screen">
@font-face {
font-family:'FontAwesome';
src:url('<?php get_stylesheet_directory_uri();?>fonts/fontawesome/fontawesome-webfont.eot');
src:url('<?php get_stylesheet_directory_uri();?>fonts/fontawesomefont/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
url('<?php get_stylesheet_directory_uri();?>fonts/fontawesomefont/fontawesome-webfont.woff') format('woff'),
url('<?php get_stylesheet_directory_uri();?>fonts/fontawesomefont/fontawesome-webfont.ttf') format('truetype');
font-weight:normal;
font-style:normal;
}
</style>
I'm then calling this php file within style.css as an @import. This approach works but I'm curious if there is a better way of handling this with WordPress?