我试图在我的 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>