当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Firefox 3.6.13 not displaying Fonts from Google Webfonts styled in CSS

  • 1 件の返信
  • 50 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: cor-el

more options

HTML Code in <head>

<link type="text/css" rel="stylesheet" 
href="http://fonts.googleapis.com/css?family=Tangerine">


CSS code

h1 { font-family: 'Tangerine', serif;
        color: navy;
        text-align: center;
        font-size: 50px;
    }
HTML Code in <head> <pre><nowiki><link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Tangerine"> </nowiki></pre> CSS code <pre><nowiki>h1 { font-family: 'Tangerine', serif; color: navy; text-align: center; font-size: 50px; } </nowiki></pre>

この投稿は cor-el により に変更されました

すべての返信 (1)

more options

Works for me:

data:text/html;charset=utf-8,
<html><head>
<link type="text/css" rel="stylesheet" 
href="http://fonts.googleapis.com/css?family=Tangerine">
<style>
h1 { font-family: 'Tangerine', serif; color: navy; text-align: center; font-size: 50px; }
</style>
</head>
<body>
<h1>abcdefghijklmonpqrstuvwxyz</h1>
</body>
</html>