If you're looking to use multiple font faces, it's actually quite simple. Here's an example of how I've done it in the past:
<!--[if (IE)]><!-->
<style type="text/css" media="screen">
@font-face {
font-family: "Century Schoolbook";
src: url(/fonts/century-schoolbook.eot);
}
@font-face {
font-family: "Chalkduster";
src: url(/fonts/chalkduster.eot);
}
</style>
<!--<![endif]-->
<!--[if !(IE)]><!-->
<style type="text/css" media="screen">
@font-face {
font-family: "Century Schoolbook";
src: url(/fonts/century-schoolbook.ttf);
}
@font-face {
font-family: "Chalkduster";
src: url(/fonts/chalkduster.ttf);
}
</style>
<!--<![endif]-->
One thing to keep in mind is that fonts may behave differently across various browsers. While font face works on older browsers, using eot files instead of ttf ones is recommended.
This is why I prefer to include my fonts in the head section of the html file and utilize conditional IE tags to specify whether to use eot or ttf files.
If you ever need to convert ttf to eot for this purpose, there's a helpful website where you can do so for free online at .
I hope this information proves to be useful!