css - Google Fonts Font Doesn't load -
i'm trying add pt sans newsletter, reason isn't loading i've copied of code, isn't working. grateful can help.
here css code:
h1, h2, h3 { font-family: 'pt sans', sans-serif; }
and html code:
<link href="http://fonts.googleapis.com/css?family=pt+sans" rel="stylesheet" type="text/css">
edit: here's rest of 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; }
try use url without "http":
<link href="//fonts.googleapis.com/css?family=pt+sans" rel="stylesheet" type="text/css">
Comments
Post a Comment