I have implemented a custom font-family using the following CSS rule:
@font-face {
font-family: 'matrix';
src: url('MaSGRgLn.eot');
src: url('MaSGRgLn.eot?#iefix') format('embedded-opentype'), url('MaSGRgLn.woff') format('woff'), url('MaSGRgLn.ttf') format('truetype'), url('MaSGRgLn.svg#MatrixScriptGr-RegularLin') format('svg');
font-weight: normal;
font-style: normal;
}
I have tested and ensured that my main font works well with all alternative formats across different browsers, except for Internet Explorer versions lower than IE9. I am wondering if there is something that I may have overlooked or not paid enough attention to?