I'm trying to use 'Futura' on my website with the @font-face generator from FontSquirrel. It is working in all browsers except IE9. I've read a lot of questions about it and tried all sorts of solutions:
- smiley face
- the font name in ', or " quotes or even no quotes when calling the font-family: Futura
- I selected EOT Lite at FontSquirrel Expert mode
This is the @font-face I'm currently using:
@font-face {
font-family: 'Futura_reg';
src: url('/fonts/futura-webfont.eot');
src: local("☺"),
url('/fonts/futura-webfont.eot?#iefix') format('embedded-opentype'),
url('/fonts/futura-webfont.woff2') format('woff2'),
url('/fonts/futura-webfont.woff') format('woff'),
url('/fonts/futura-webfont.ttf') format('truetype'),
url('/fonts/futura-webfont.svg#futura-webfont') format('svg');
font-weight: normal;
font-style: normal;
}
Why is IE9 not showing the Futura font while all other browsers, even IE7 & IE8 are showing it. Are there any other solutions?