我已经建立了一个网站。我在webs.com上托管它,但他们开始在html-only托管上放置一个广告栏。因为它看起来不太好,我把它改成了000webhost。由于我将所有内容上传到000webhost,我无法加载字体。
纤维网: http://bluescreen-ofdeath.webs.com/
000webhost的: http://bsod.comze.com/
我试过从我的网站帐户指向ttf字体,但它不会加载。
由于000webhost需要一天时间来回答免费帐户,我决定问你。有什么我想念的吗?
编辑:以下是我的@ Font-face
的示例@font-face {
font-family: 'fixedsys500c-webfont';
src: url('../font/fixedsys500c-webfont.eot');
src: url('../font/fixedsys500c-webfont.eot?#iefix') format('embedded-opentype'),
url('../font/fixedsys500c-webfont.woff') format('woff'),
url('../font/fixedsys500c-webfont.ttf') format('truetype'),
url('../font/fixedsys500c-webfont.svg#fixedsys500c-webfont') format('svg');
font-weight: normal;
font-style: normal;
}
答案 0 :(得分:0)
不要使用单引号。你的字体可以很好地工作。这很简单,看下面:
@font-face {
font-family:Arial;
src:url(Arial.ttf)format(.ttf);
}
提醒一下,Internet Explorer只适用于EOT字体文件。
答案 1 :(得分:0)
必须在样式表之前导入字体,如Google Web Fonts所示。
说明:要将您的收藏嵌入您的网页,请复制 代码作为HTML文档的
<head>
中的第一个元素。
答案 2 :(得分:0)
据我所知,000webhost仅接受.woff文件。
.ttf和.eot对我不起作用