如何在CSS中嵌入字体?

我想使用某些字体,并且希望它能在客户端计算机上没有该字体的情况下工作。我已经做到了,但是没有用:

@font-face {

font-family: EntezareZohoor2;

src: url(Entezar2.ttf) format("truetype");

}

.EntezarFont{

font-family: EntezareZohoor2, B Nazanin, Tahoma !important;

}

回答:

@font-face {

font-family: 'EntezareZohoor2';

src: url('fonts/EntezareZohoor2.eot'), url('fonts/EntezareZohoor2.ttf') format('truetype'), url('fonts/EntezareZohoor2.svg') format('svg');

font-weight: normal;

font-style: normal;

}

#newfont{

font-family:'EntezareZohoor2';

}

以上是 如何在CSS中嵌入字体? 的全部内容, 来源链接: utcz.com/qa/403184.html

回到顶部