Google字体字体无法加载

时间:2013-07-17 23:31:08

标签: css google-font-api

我正在尝试将PT Sans添加到新闻稿中,但由于某些原因它没有加载我已经复制了几乎所有代码,但它无法正常工作。对于任何可以提供帮助的人,我都会非常感激。

这是CSS代码:

h1, h2, h3 {
    font-family: 'PT Sans', sans-serif;
}

和HTML代码:

<link href="http://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet" type="text/css">

编辑: 这是CSS的其余部分:

h1, h2, h3 {
    font-family: 'PT Sans', sans-serif;
}

#logo{width:810px}

#saveDateText{
    position:relative;
    top:30px;
    left:80px;
    font-size:50px;
    color:rgb(228,242,214)
}

#october{
    position:relative;
    top:0px;
    left:90px;
    font-size:35px;
    color:rgb(228,242,214)
}

#raftLogo{
    position:relative;
    top:-125px;
    left:550px;
}

#saveTheDate {
    background-color:rgb(123, 190, 48);
    height:170px;
    width:810px;
}

#honoring {
    position:relative;
    background-color:rgb(9, 65, 30);
    width:810px;
    top:-30px;
    font-size:20px;
    height:400px;
}

#honoringTextDiv {
    position:relative;
    width:740px;
    left:70px;
    top:50px
}

#infoText {
    color:white;
    font-size:25px;
}

#honoringText {
    color:rgb(242, 183, 51);
}

#benifit{
    color:white;
    font-size:25px
}

#morgridge {
    position:relative;
    top:20px
}
#sponsorships {
    position:relative;
    left:20px;
    top:-30px;
    height:300px;
    width:400px;
    border-right-style:solid;
    border-right-color:rgb(160, 202, 129);
    border-right-width:1px;
}

#inventiveSponsorsDiv {
    position:relative;
    left:425px;
    top:-155px
}
#dmns {
    position:relative;
    top:-40px;
}
#1stbank {
    position:relative;
    top:80px;
}

#inspirationalSponsors, #inventiveSponsors{
    position:relative;
    top:0px;
    color:rgb(123,190,48);
    font-size:18px;
}
#inventiveSponsors {
    top:-20px;
}

#names, #names2 {
    line-height:25px;
    font-size:14px

}
#names2 {
    position:relative;
    top:-94px;
    left:160px;
    text-align:left;
}

6 个答案:

答案 0 :(得分:14)

尝试使用不带“http”的网址:

<link href="//fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet" type="text/css">

答案 1 :(得分:4)

几点提示:
1.在<head>开头使用HTML代码,然后再使用其他代码。示例:
<head> <link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'> /* Rest of the code after this */ </head>
2。如果这不起作用,请将其放在CSS文件中: @import url(http://fonts.googleapis.com/css?family=PT+Sans);

答案 2 :(得分:2)

问问自己:

1. Are you developing online or offline (if online check number 2)

2. Make sure your browser does not have a shield icon because this 
   means the browser is blocking the font and you need to click
   the allow button.

3. Check for spelling errors or anything suspicious.

4. Finally @import is the safest way I think. 

答案 3 :(得分:0)

我遇到了同样的问题,如果使用的是CSS标签:

“font:3em bold;” ---这会覆盖google api调用并加载下一个默认字体。

解决方案:使用font-style和font-size

答案 4 :(得分:0)

检查是否在供应商样式表之后加载了CSS文件。例如,bootstrap.css应该在CSS文件之前。

答案 5 :(得分:0)

我今天遇到了这个问题。如果您使用httpsurl进行测试,则需要更改链接href="http://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet"href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet"。 否则,存在冲突问题。

我希望那会希望有人。