如何在CSS中嵌入字体?

问题描述:

我想使用一些字体,我希望它在客户端计算机上没有这种字体。我已经这样做但不工作:

I want to use some fonts and I want it to work without having this font on the client computer. I have done this but doesn't work:

@font-face {
    font-family: EntezareZohoor2;
    src: url(Entezar2.ttf) format("truetype");
}

.EntezarFont{
    font-family: EntezareZohoor2, B Nazanin, Tahoma !important;
}


用于在css中定义字体

@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;
}

在css中定义/使用字体的行>

Following lines to define/use the font in css

#newfont{
    font-family:'EntezareZohoor2';
}