所以我试图在 GAE 网站上使用 Google Webfont。当我在本地浏览网站时,该字体有效,但在我部署并转到 .appspot.com 地址后,该字体不再有效,默认为“草书”。
以下是相关代码:
CSS:
.logo {
font-family: 'Nothing You Could Do', cursive;
}
HTML:
<head>
<link href='http://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
</head>
<a class="logo" href="/">Project</a>