JSPページでGoogleWebフォントを使用しようとしましたが、正しく機能していないようです。Fedora 16 OSには、フォント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>