Css @字体面已停止处理某些字体

Css @字体面已停止处理某些字体,css,font-face,Css,Font Face,我在我的网站上使用了@font-face两种字体。 其中一个停止了工作——我检查了所有的东西,尝试了不同的语法,但没有任何结果。 这是我的CSS: @font-face { font-family: 'gotham'; src:url(http://www.odednaaman.com/fonts/gothambook.eot) format('eot'); src:url(http://www.odednaaman.com/fonts/gothambook.ttf) format('truet

我在我的网站上使用了@font-face两种字体。 其中一个停止了工作——我检查了所有的东西,尝试了不同的语法,但没有任何结果。 这是我的CSS:

@font-face
{
font-family: 'gotham';
src:url(http://www.odednaaman.com/fonts/gothambook.eot) format('eot');
src:url(http://www.odednaaman.com/fonts/gothambook.ttf) format('truetype'), url(http://www.odednaaman.com/fonts/gotham-book.otf) format('opentype'), url(http://www.odednaaman.com/fonts/gothambook.woff) format('woff'),  url(http://www.odednaaman.com/fonts/gothambook.eot?iefix) format('embedded-opentype');       
}

@font-face
{
font-family: 'yank';
src: url(http://www.odednaaman.com/fonts/yank.ttf) format('truetype');
}
“Yank”字体仍然可以完美地工作。使用chrome进行QA

网站:www.odednaaman.com

有什么想法吗

谢谢,
Oded

src应该只有一次,但在第一个@font-face中有两次。因此,请使用以下命令:

@font-face
{
font-family: 'gotham';
src:url(http://www.odednaaman.com/fonts/gothambook.eot) format('eot'),
    url(http://www.odednaaman.com/fonts/gothambook.ttf) format('truetype'),
    url(http://www.odednaaman.com/fonts/gotham-book.otf) format('opentype'),
    url(http://www.odednaaman.com/fonts/gothambook.woff) format('woff'),
    url(http://www.odednaaman.com/fonts/gothambook.eot?iefix) format('embedded-opentype');       
}

@font-face
{
font-family: 'yank';
src: url(http://www.odednaaman.com/fonts/yank.ttf) format('truetype');
}

从Chrome的控制台:

加载资源失败:服务器响应状态为404(未找到)

因此,您似乎需要上传.woff文件