No, no puede.
Su página tiene que tener exactamente un <title/> elemento. Para los sub-secciones de una página en la que se desea utilizar otros tÃtulos, es necesario utilizar <h1>, <h2>,..., <h6> elementos.
Por ejemplo,
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Main Subject of the Page</title>
</head>
<body>
<h1>Title of something pertaining to Main Subject</h1>
<p>Content about title of something pertaining to Main Subject</p>
<h2>Further granulated title related to title of something pertaining to Main Subject</h2>
<p>Content ...</p>
</body>
</html>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>Main Subject of the Page</title>
- </head>
- <body>
- <h1>Title of something pertaining to Main Subject</h1>
- <p>Content about title of something pertaining to Main Subject</p>
-
- <h2>Further granulated title related to title of something pertaining to Main Subject</h2>
- <p>Content ...</p>
- </body>
- </html>
En general, cuanto mayor sea el número que está utilizando en su <h #> Elemento, el más granulada y el contenido especÃfico a raÃz de la <h #> Elemento será.
Usted probablemente no va a pasar <h4> o incluso <h3> en la mayorÃa de los casos. Mucha gente parece que les gusta reservar <h5> y <h6> elementos de los encabezados de columna lateral, los marcadores de navegación, y cosas de esa naturaleza.
Strong with this one, the sudo is.