@ font-face在所有浏览器中都不适用于我的ttf字体

时间:2013-06-21 12:02:24

标签: css font-face webfonts

我使用ttf字体在我的网站上使用@ font-face在css中像这样

@font-face
{

font-family: myFirstFont;

src: url('tamil.ttf');


} 

.tlan {
font-family: myFirstFont;
color:#039;
}

tamil.ttf不是英文字体。 我无法解决这个问题..

关注此链接,了解有关此@ font-face问题的所有内容。 http://aaritcare.com/font%20problem/

我用我的字体附上了word文档。

1 个答案:

答案 0 :(得分:1)

try this :

    @font-face required eot, woff, svg, font format.

    @font-face {
     font-family: "tamil";
     src: url("tamil.eot") format('embedded-opentype'), /* EDIT correction on this line */
     url('tamil.woff') format('woff'),
     url('tamil.ttf') format('truetype'),
     url('tamilvg#') format('svg');
     font-weight:bold;
     font-style:normal;
    }

or 

<FilesMatch "\.(ttf|otf|eot)$">
    <IfModule mod_headers.c>
        Header set Access-Control-Allow-Origin "*"
    </IfModule>
</FilesMatch>`

我确定你是否想在这个网站http://www.fontsquirrel.com/

上制作@fontface工具包