0

我正在尝试使用从http://www.fontsquirrel.com/下载的字体。我附加的文件包含在字体文件夹中,在我的 HTML 文件中,我有一个<h1>标签,上面写着“Hello font”。

但是它不起作用。有谁知道为什么?

@font-face {
    font-family:'vitaminregular';
    src: url('fotns/VITAMIN_-webfont.eot');
    src: url('fonts/VITAMIN_-webfont.eot?#iefix') format('embedded- opentype'), url('fonts/VITAMIN_-webfont.woff') format('woff'), url('fonts/VITAMIN_-webfont.ttf') format('truetype'), url('fonts/VITAMIN_-webfont.svg#vitaminregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
h1 {
    text-align:center;
    font-size:100px;
    font-family:'VitaminRegular;
}
4

2 回答 2

2
h1{

                  text-align:center;
                  font-size:100px;
                  font-family:'VitaminRegular;
                       }

您在 H1 中的 font-family 调用缺少结束语 '

将呼叫更改为

font-family:'VitaminRegular';

这应该有效

于 2013-08-11T20:07:34.020 回答
0
    @font-face {
    font-family:'vitaminregular';
    src: url('fotns/VITAMIN_-webfont.eot');
    src: url('fonts/VITAMIN_-webfont.eot?#iefix') format('embedded- opentype'), url('fonts/VITAMIN_-webfont.woff') format('woff'), url('fonts/VITAMIN_-webfont.ttf') format('truetype'), url('fonts/VITAMIN_-webfont.svg#vitaminregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
h1 {
    text-align:center;
    font-size:100px;
    font-family:'vitaminRegular';
}

在 h1 中,字体 font-family 应该匹配 @font-face 字体家族属性

于 2013-08-11T21:20:39.363 回答