0

css に font-face で 2 つのフォントをロードしています。最初のフォントは IE7/8 で動作しますが、2 番目のフォントは動作しません。css コードは両方のフォントで同じです。それを修正する方法はありますか?:(

ここにhtmlページがあります:http://canapin.com/web/fonts.html

そしてcss:http://canapin.com/web/fonts.html

@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';
}
4

0 に答える 0