So, I have 3 font files which include eot, woff and ttf. All of them are imported in the css by using the code below, however, the font does not show up on IE but does on Chrome and Firefox.
@font-face {
font-family: 'myriadpro';
src: url('myriadpro-regular.eot');
src: url('myriadpro-regular.eot?#iefix') format('embedded-opentype'),
url('myriadpro-regular.woff') format('woff'),
url('myriadpro-regular.ttf') format('truetype');
}
Any idea on how to get this working because I have no idea on how to get this working?