Risposte:
È necessario copiare html.tpl.php predefinito dalla directory del modulo di sistema.
Oppure puoi usare la funzione drupal_add_html_head
per sovrascrivere o aggiungere un nuovo tag 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');
Se vuoi cambiare il tag head, dovrai usare html.tpl.php