0

我去了防弹@font-face 并尝试使用它作为模板将字体嵌入到我的网站中,但它不起作用。我想使用 perspective-sans black regular。我将四个文件上传到我的服务器:套件附带的 css 样式表,以及该字体的 eot、ttf 和 woff 文件。我想知道怎么了?现在存在的字体是默认字体。

http://swarthmorebahais.org/

 @font-face {
    font-family: 'persanbk'; src:
            url('persanbk-webfont.eot') format('eot'), 
            url('persanbk-webfont.woff') format('woff'), 
            url('persanbk-webfont.ttf') format('truetype')
}

#h2 {
    position:absolute;
    top:30%;
    left:50%;
    margin-top:-20px;
    margin-left:-351px;
    width:702px;
    height:60px;
    font:50px persanbk, sans serif;
    color:#cc0257;
}

 <div id='h2'>
            The earth is but one country,
        </div>
4

1 回答 1

1

所以在我看来你的字体文件有 404 错误,我会检查它们是否在正确的位置,你的代码说它们应该在你网站的根目录,例如:“http://swarthmorebahais .org/persanbk-webfont.eot" 是 404ing 字体预期位置之一。

于 2013-01-09T03:28:46.803 回答