Respostas:
Você precisa copiar o arquivo html.tpl.php padrão do diretório do módulo do sistema.
Ou você pode usar a função drupal_add_html_head
para substituir ou adicionar uma nova etiqueta de cabeçalho.
// 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 você quiser alterar a tag head, precisará usar html.tpl.php