回答:
システムモジュールディレクトリからデフォルトのhtml.tpl.phpをコピーする必要があります。
または、関数drupal_add_html_head
を使用して、新しいheadタグをオーバーライドまたは追加できます。
// First, we must set up an array
$element = array(
'#tag' => 'link', // The #tag is the html tag - <link />
'#attributes' => array( // Set up an array of attributes inside the tag
'href' => 'http://fonts.googleapis.com/css?family=Cardo&subset=latin',
'rel' => 'stylesheet',
'type' => 'text/css',
),
);
drupal_add_html_head($element, 'google_font_cardo');
headタグを変更する場合は、html.tpl.phpを使用する必要があります