Plantilla de página web:

Etiquetas y contenidos en HTML y en XHTML
Etiquetas HTMLEtiquetas XHTML 1.1
<html>

<head>
<title>Plantilla0 en HTML</title>
</head>

<body>
<p>
Plantilla de página web:
</p>
</body>

</html>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!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">

<head>
<title>Plantilla0 en HTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
</head>

<body>
<p>
Plantilla de página web:
</p>
</body>

</html>