Ver Mensaje Individual
Antiguo 27-mar-2007, 13:24   #69 (permalink)
stock
stock tiene algunos puntos positivos de karma
 
Avatar de stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 1.993
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
__________________
Don't hate the languaje, hate the runtime environment
Crysfel's Blog :: Blog de programación, JAVA,PHP, AJAX, JavaScript, CSS y otras hierbas

Última edición por stock; 27-abr-2007 a las 10:54.
stock está desconectado   Responder Citando