-1

我试图在我的 JSP 页面上使用 google 网络字体,但它似乎无法正常工作。在我的Fedora 16 操作系统上,我安装了Chiller字体。当我Chiller在 Fedora 上运行使用 google font apis 以字体显示文本的代码时,它会以该字体显示文本,但是当我在未安装冷却器字体的Ubuntu上尝试时,浏览器会显示默认字体可能在后备中使用。这可能是什么原因?片段:

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Chiller">
    <style>
        #page_font {
            font-family: 'Chiller';
            font-size: 50px;
        }
    </style>
    <title>New Year Countdown </title>

</head>

<body> <div id="page_font"> <br /> Countdown </div>  </body>

注意:该 JSP 页面的网址,我在其中使用了此代码段

4

1 回答 1

1

调用http://fonts.googleapis.com/css?family=Chiller时,Google 网站会回复:

Error (400): Missing font family

他们没有名为“Chiller”的字体!

于 2012-12-27T14:07:16.443 回答