カスタムフォントを定義して使用しています。内部スタイルシートではこれは正常に機能しましたが、外部スタイルシートで使用すると機能しません。
これは私のコードです:
@font-face
{
font-family: A1Tahoma;
src: url('Fonts/a1tahoma.eot') format('eot')
, url('Fonts/a1tahoma.ttf') format('truetype')
, url('Fonts/a1tahoma.woff') format('woff')
, url('Fonts/a1tahoma.svg') format('svg');
/* font-weight: normal;
font-style: normal;*/
}
body,.test1
{
font-family:A1Tahoma; font-weight: bold;font-style: normal;
}
<div class="test1">این خط را باید با نوع فونت تاهما ببینید<br />همچنین عدد 125420 به صورت فارسی تایپ شده است.</div>
手伝って頂けますか?