0

所以我使用了一些非常简洁的字体,而且我以前从未遇到过@font-face 的任何问题,但是,这些似乎不起作用。:( 任何想法出了什么问题?

CSS 路径:http ://carlpapworth.com/friday-quiz/css/style.css

字体文件夹的路径: http ://carlpapworth.com/friday-quiz/css/fonts

@font-face {
font-family: silverfake;
font-weight: 100;
font-style: normal;
src: url('fonts/silverfake.otf');
}

@font-face {
font-family: molesk;
font-weight: 100;
font-style: normal;
src: url('fonts/molesk.otf');
}

@font-face {
font-family: ballpark;
font-weight: 100;
font-style: normal;
src: url('fonts/ballpark.TTF') format("truetype");
}
4

2 回答 2

0

您可能没有正确链接到字体。它通常是小东西;

src: url('../fonts/silverfake.otf');

代替

src: url('fonts/silverfake.otf');

尝试使用fontsquirrel webfont 生成器来确保所有内容都正确链接,并且对浏览器友好。

于 2013-03-19T09:13:58.737 回答
0

至少找到了让 Molesk 工作的答案:

@font-face {
font-family:"molesk";
src:url("molesk.eot?") 
format("eot"),url("molesk.woff") 
format("woff"),url("molesk.ttf") 
format("truetype"),url("molesk.svg#molesk") 
format("svg");
font-weight:normal;
font-style:normal;}
于 2013-03-19T09:14:19.940 回答