Ok, dejame aclararte algo. PHP cuando haya terminado toda su programación, le va a enviar al navegador HTML. Si tu lo que quieres es incluir lo que acabas de indicar solo tienes que escribirlo directamente entre head y head. Te voy a enseñar mas grafico
Código PHP:
Ver original<?php
//codigo de php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta name="description" content="xxxxxx">
<meta name="keywords" content="ejemplo1 ejemplo2">
</head>
<body>
.....
</body>
</html>
Si tu lo tienes declarado en un archivo aparte y quieres incluirlo, lo puedes hacer de esta manera
Código PHP:
Ver original<?php
//codigo de php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<?php include("archivo_que_tiene_el_head.php"); ?>
<body>
.....
</body>
</html>