我正在尝试使用从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;
}