使用font-face在CSS中自定义字体

时间:2013-10-04 08:24:25

标签: html css fonts font-face

所以我看了,看了看,看了看,改变了并试了试但是我不能为我的生活让这个工作。有没有人知道问题出在哪里?

@font-face {
  font-family: 'customFont';
  src: url('www.100%CorrectURL.com/font.eot');
  src: url('www.100%CorrectURL.com/font.eot?#iefix') format('embedded-opentype'),
       url('www.100%CorrectURL.com/font.woff') format('woff'),
       url('www.100%CorrectURL.com/font.ttf') format('truetype'),
       url('www.100%CorrectURL.com/font.svg#paulmaulregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

网址肯定是正确的(我已经更改了上述源代码中的那个),但由于某种原因,它只是没有将字体加载到页面。

1 个答案:

答案 0 :(得分:0)

您的代码是正确的,但您可以删除这两个标记:

  font-weight: normal;
  font-style: normal;

IT应该有效,否则,您需要使用另一个webfont(谷歌字体始终有效)

注意:网址“www.100%CorrectURL.com / font.eot”不存在,您需要添加正确的网址。