我想使用一些字体,我希望它的工作,而没有在客户端计算机上的这种字体。我做了这个,但不工作:
@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中的字体
#newfont{ font-family:'EntezareZohoor2'; }