Internet explorer 8 字体及;IE8?

Internet explorer 8 字体及;IE8?,internet-explorer-8,internet-explorer-7,font-face,Internet Explorer 8,Internet Explorer 7,Font Face,我在css上加载了两种带有字体的字体。 第一种字体适用于IE7/8,第二种不适用。两种字体的css代码相同。 知道怎么解决吗( 以下是html页面: 和css: 检查此问题:谢谢!我使用了font2web生成的字体,但它不起作用。我想我现在将使用fontsquirrel。 @font-face { font-family: 'nexa_bold'; src: url('./fonts/Nexa Bold.eot?'); src: url('./fonts/Nexa Bol

我在css上加载了两种带有字体的字体。 第一种字体适用于IE7/8,第二种不适用。两种字体的css代码相同。 知道怎么解决吗(

以下是html页面:

和css:


检查此问题:谢谢!我使用了font2web生成的字体,但它不起作用。我想我现在将使用fontsquirrel。
@font-face {
    font-family: 'nexa_bold';
    src: url('./fonts/Nexa Bold.eot?');
    src: url('./fonts/Nexa Bold.woff') format('woff'),
         url('./fonts/Nexa Bold.ttf') format('truetype'),
         url('./fonts/Nexa Bold.svg') format('svg');
}
@font-face {
    font-family: 'signika';
    src: url('./fonts/Signika-Regular.eot?');
    src: url('./fonts/Signika-Regular.woff') format('woff'),
         url('./fonts/Signika-Regular.ttf') format('truetype'),
         url('./fonts/Signika-Regular.svg') format('svg');
}

h1 {
    font-family: 'nexa_bold';
}

h1.alt {
    font-family: 'signika';
}