ここでイライラするのはここです。Sansation 用のフォント パックを入手し、@font-face で使用してみました。通常のバージョンは機能しますが、「ボールド」バージョンは機能しません。ファイル名を確認しましたが、間違いなく正しいです。私の理解では、どのフォントでも機能するはずです。何か不足していますか?
@font-face
{
font-family: sansation_regular;
src: url('/fonts/sansation_regular-webfont.ttf'),
url('/fonts/sansation_regular-webfont.eot');
}
次に、テキスト要素に対応する CSS の font-family を変更せずに、次のように変更します。
@font-face
{
font-family: sansation_regular;
src: url('/fonts/sansation_bold-webfont.ttf'),
url('/fonts/sansation_bold-webfont.eot');
}
ご協力ありがとうございます。