Trying to get custom font working

Edit: It appears to work in everything but IE, is there a hack for getting it to work in IE?

I have the following lines in my CSS, and I’ve removed all other font styles:

@font-face
{
font-family: poor_richard;
src: url(url removed) format(‘opentype’);
}
html, body
{
font-family:poor_richard;
}

I’ve verified that all my links are point to the correct files, is there something I’m doing wrong?

Hi,

Use the font squirrel generator to generate the needed fonts in the right format.

Then read the reasons why here:

http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/

Thanks, after I posted this I found out about eot format, and got it all converted. Thanks.