Al iniciar cualquier proyecto es necesario escribir la estructura básica de nuestro documento HTML/XHTML, algo que con el tiempo se vuelve tedioso.
A continuación les dejo algunas plantillas que he escrito para ahorrarme ese aburrido primer paso.
<!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">
<head>
<title>Plantilla XHTML 1.0 Transitional</title>
<!--metatags-->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!--stylesheets-->
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<!--javascripts-->
<!--feeds/pingback-->
</head>
<body>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Plantilla XHTML 1.0 Strict</title>
<!--metatags-->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!--stylesheets-->
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<!--javascripts-->
<!--feeds/pingback-->
</head>
<body>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Plantilla HTML 4.01 Transitional</title>
<!--metatags-->
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!--stylesheets-->
<link rel="stylesheet" type="text/css" href="style.css" media="screen">
<!--javascripts-->
<!--feeds/pingback-->
</head>
<body>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Plantilla HTML 4.01 Strict</title>
<!--metatags-->
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!--stylesheets-->
<link rel="stylesheet" type="text/css" href="style.css" media="screen">
<!--javascripts-->
<!--feeds/pingback-->
</head>
<body>
</body>
</html>









Sin comentarios
No hay comentarios. ¡Sé el primero!