Ver Mensaje Individual
  #62 (permalink)  
Antiguo 27/03/2007, 13:24
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 9 meses
Puntos: 53
Re: FAQ's de HTML

Pregunta: Como crear un documento XHTML correctamente?
Respuesta: La estructura correcta de un XHTML utilizando el doctype XHTML 1.0 Strict es la siguiente.

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1;" />
<title>El titulo del documento</title>
</head>
<body>

</body>
</html>
para mayor información visitar el siguiente link
http://www.crysfel.com/index.php/200...a-de-un-xhtml/

Have funnnnnnnn

Última edición por stock; 27/04/2007 a las 10:54