Google字体未显示(使用cpanel)

时间:2015-05-21 19:02:07

标签: css fonts google-font-api

由于某些原因,我的谷歌字体没有出现在我的预览中!

我的css看起来像这样

@import url(http://fonts.googleapis.com/css?family=Montserrat:700,400);

html, body {
  margin:0;
  padding:0;
  color:#2E3192;
  font-family: 'Montserrat', sans-serif !important;
  background-image: url("images/backgroundimg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size: 13pt;
  overflow-x: hidden;
 }

我很确定这些都是正确的,因为它在codepen中工作。是因为我正在预览还是什么?

感谢

1 个答案:

答案 0 :(得分:2)

如果您预览"是https,这可以解释它。浏览器可能会阻止不安全的请求。尝试在没有http:的情况下引用Google导入。

@import url(//fonts.googleapis.com/css?family=Montserrat:700,400);

//开头的网址是协议相对的。无论使用何种协议,都将使用父文档。