何が問題なのかわかりませんが、Font2Web を使用して一連のフォントを変換したところです。次のコードを CSS に添付して、通常どおり必要なフォントをレンダリングしました。
@font-face {
font-family: 'Gotham Bold';
src: url('../fonts/Gotham-Bold/fonts/Gotham-Bold.eot');
src: url('../fonts/Gotham-Bold/fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Gotham-Bold/fonts/Gotham-Bold.woff') format('woff'),
url('../fonts/Gotham-Bold/fonts/Gotham-Bold.ttf') format('truetype'),
url('../fonts/Gotham-Bold/fonts/Gotham-Bold.svg') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gotham Medium';
src: url('../fonts/Gotham-Medium/fonts/Gotham-Medium.eot');
src: url('../fonts/Gotham-Medium/fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Gotham-Medium/fonts/Gotham-Medium.woff') format('woff'),
url('../fonts/Gotham-Medium/fonts/Gotham-Medium.ttf') format('truetype'),
url('../fonts/Gotham-Medium/fonts/Gotham-Medium.svg') format('svg');
font-weight: normal;
font-style: normal;
}
その結果、フォントは Chrome、Safari、Firefox では適切にレンダリングされますが、IE8 では失敗し、必要なフォントがまったく読み込まれません。
私の推測では、私が使用していたコンバーターに EOT ファイルに問題がある可能性があります。ありがとう。