I have fonts installed like this on my site:
@font-face {
font-family: 'Avenir-Book';
font-style: normal;
font-weight: 400;
src: url('/fonts/Avenir-Book.eot?#iefix') format('embedded-opentype'),
url('/fonts/Avenir-Book.ttf') format('truetype');
}
However, when I try to run it from Internet Explorer, the site won't open and these errorrs appear in console:
CSS3111: @font-face encountered unknown error.
Avenir-Book.eot
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable.
Avenir-Book.ttf
Not exactly sure what I am doing wrong as I thought the eot
file resolves IE issues.