Todos los documentos XHTML deben tener un elemento title en la sección de cabecera (head).
El elemento title debe utilizarse para identificar los contenidos del documento.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<html>
<head>
<title>
Elemento title
</title>
</head>
<body>
...
</body>
</html>