我正在定义并使用我的自定义字体。在内部样式表中这工作正常,但是当我在外部样式表中使用它时它不起作用。
这是我的代码:
@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>
你能帮助我吗?