• Septimum logo
  • Septimum

    El blog de rod750

  •  
  • Inicio | Contrátame | Enlaces | Recursos
  •  
  •  
  • Plantillas HTML/XHTML

    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.

    XHTML 1.0 Transitional

    <!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>

    XHTML 1.0 Strict

    <!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>

    HTML 4.01 Transitional

    <!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>

    HTML 4.01 Strict

    <!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>
  • AutorCategoríasFechaCorreoTwitterFacebookDeliciousMySpaceComentarios
  • Sin comentarios

  • No hay comentarios. ¡Sé el primero!

  • Añadir un comentario

  • Septimum © 2009-2010 | XHTML 1.0 | CSS | RSS