web-dev-qa-db-ja.com

BloggerでGoogle Web Fontsの「テキスト」パラメーターを使用する方法

Googleは、Google Web Fonts APIに新しいパラメーター「テキスト」を導入しました。このパラメーターでは、リクエストに使用する文字を選択できます(ロゴに必要な文字数が少ない場合)

新しいパラメーターの導入について説明します here

しかし、このBloggerテンプレートを挿入すると:

<link href='http://fonts.googleapis.com/css?family=Over+the+Rainbow:regular&text=PulaAe' rel='stylesheet' type='text/css'/>

私はこのエラーを受け取ります:

The reference to entity "text" must end with the ';' delimiter.

Blogger内でこの新しいパラメーターを使用する正しい方法が誰か知っていますか?

1
DaneoShiga

エンティティ「テキスト」への参照は「;」で終わる必要がありますデリミタ。

これはHTML検証エラーのようです。

代わりにこの<link>を試してください:

<link href='http://fonts.googleapis.com/css?family=Over+the+Rainbow:regular&amp;text=PulaAe' rel='stylesheet' type='text/css'/>
0
danlefree