2017-10-16 7 views
3

Iは、書体を作成し、身体に適用:Googleフォントが@ font-faceから読み込まれないのはなぜですか?

@font-face { 
 
    font-family: 'Nosifer'; 
 
     src: url('https://fonts.googleapis.com/css?family=Nosifer'); 
 
    } 
 
body { font-family: 'Nosifer' }
<body> 
 
    This is text. 
 
</body>

しかし、Nosiferフォントが表示されていません。私は間違って何をしていますか?フィドルへ

URL:

Failed to decode downloaded font: https://fonts.googleapis.com/css?family=Nosifer

OTS parsing error: invalid version tag

Googleのフォントの実装ガイドラインfor this font@font-faceの使用を特徴としていない:http://jsfiddle.net/9mr7973y/

答えて

5

Chromeは、コンソールで次のような警告を与えます。あなたはCSSを通してそれをインポートする場合、彼らは代わりに@importを使用しての助言:

@import url('https://fonts.googleapis.com/css?family=Nosifer'); 
+0

おかげのようにフォントを適用します。私はこの問題の解決策を探しています:https://stackoverflow.com/questions/46764887/how-to-load-fonts-automatically-on-the-website?noredirect=1#comment80475104_46764887フォントをロードするブラウザを言う方法。 – Yoda

0

は、HTMLヘッダー

<link href="https://fonts.googleapis.com/css?family=Nosifer" rel="stylesheet"> 

でこれを追加し、

font-family: 'Nosifer', cursive; 
関連する問題