URL is http://arethebaronsplaying.com/
If someone can solve this for me I'll deliver something worth their while...seriously.
I cannot get my fonts to render in IE 10 or 11 in my rails app. I get the following error in IE:
"CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable."
I don't care about earlier than 10. I've tried everything people have already suggested.
I've used the font squirrel font generator, I've added a `.htaccess' file to my root with the following inside of it:
Header set Access-Control-Allow-Origin "*"
I've added a meta tag to my <head>
<meta http-equiv="X-UA-Compatible" content="IE=10">
I'm stuck. Here's my css:
@font-face {
font-family: 'hamilton20';
src: asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.eot');
src: asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.eot?#iefix') format('embedded-opentype'),
asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.woff') format('woff'),
asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.ttf') format('truetype'),
asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.svg#MonoSocialIconsFont') format('svg');
src: asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Scotch, anyone?