Answers:
您需要从系统模块目录复制默认的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