/ Published in: HTML
Construyendo una plantilla XHTML progresivamente, entendiendo cada elemento insertado.
Expand |
Embed | Plain Text
Copy this code and paste it in your 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" xml:lang="es" lang="es"> <head> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <base href="http://miservidororg.com/" /> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="content-language" content="es" /> <meta http-equiv="content-style-type" content="text/css" /> <meta http-equiv="content-script-type" content="text/javascript" /> <meta http-equiv="window-target" content="_top" /> <meta name="description" content="incluir descripcion" /> <!--// Incluir descripci����¯�¿�½������³n //--> <meta name="keywords" content="palabra1, palabra2" /> <link href="estilosGeneral.css" type="text/css" rel="stylesheet" media="all" /> <link href="estilosPantalla.css" type="text/css" rel="stylesheet" media="screen,projection" /> <link href="estilosPrint.css" type="text/css" rel="stylesheet" media="print,tty" /> <link href="estilosTelevision.css" type="text/css" rel="stylesheet" media="tv" /> <link href="estilosSintetizador.css" type="text/css" rel="stylesheet" media="aural" /> <link href="estilosMovil.css " type="text/css" rel="stylesheet" media="handheld" /> <!--[if lt IE 7]><link rel="stylesheet" type="text/css" media="screen" href="/_css/ie6.css"/><![endif]--> <!--[if lte IE 7]><link rel="stylesheet" type="text/css" media="screen" href="/_css/ie7.css"/><![endif]--> </head> <body> <div id="wrapper"> <div id="header"> [Cabecera] </div><!--/header--> <div id="container"> <div class="column first sidebar"> [lateral 1] </div> <div id="content"> [Contenido] </div> <div class="column last sidebar"> [lateral 2] </div> </div><!--/container--> <div id="footer"> [Pie] </div><!--/footer--> </div><!--/wrapper--> </body> </html>
URL: http://olgacarreras.blogspot.com/2007/02/plantilla-base-xhtml.html