I'm having problems during webdevelopment for IE8. The website should support IE8. Font will not shown correctly.
I use the following code:
@font-face {
font-family: 'MyFont';
src: url('./fonts/myfont/eot/Myfont.eot');
src: url('./fonts/myfont/eot/Myfont.eot?iefix') format('eot'),
url('./fonts/myfont/woff/Myfont.woff') format('woff'),
url('fonts/myfont/ttf/Myfont.ttf') format('truetype'),
url('./fonts/myfont/svg/Myfont.svg#webfont') format('svg');
font-weight: normal;
font-style: normal;
}
What can I do that the font will be shown correctly?.
Thx for your help.