Mi plantilla XHTML en crecimiento


/ Published in: HTML
Save to your folder(s)

Construyendo una plantilla XHTML progresivamente, entendiendo cada elemento insertado.


Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
  4.  
  5. <head>
  6. <title>Titulo de la pagina</title>
  7. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  8. <base href="http://miservidororg.com/" />
  9.  
  10. <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
  11. <meta http-equiv="content-language" content="es" />
  12. <meta http-equiv="content-style-type" content="text/css" />
  13. <meta http-equiv="content-script-type" content="text/javascript" />
  14. <meta http-equiv="window-target" content="_top" />
  15.  
  16. <meta name="description" content="incluir descripcion" />
  17. <!--// Incluir descripci����¯�¿�½������³n //-->
  18. <meta name="keywords" content="palabra1, palabra2" />
  19.  
  20. <link href="estilosGeneral.css" type="text/css" rel="stylesheet" media="all" />
  21. <link href="estilosPantalla.css" type="text/css" rel="stylesheet" media="screen,projection" />
  22. <link href="estilosPrint.css" type="text/css" rel="stylesheet" media="print,tty" />
  23. <link href="estilosTelevision.css" type="text/css" rel="stylesheet" media="tv" />
  24. <link href="estilosSintetizador.css" type="text/css" rel="stylesheet" media="aural" />
  25. <link href="estilosMovil.css " type="text/css" rel="stylesheet" media="handheld" />
  26.  
  27. <!--[if lt IE 7]><link rel="stylesheet" type="text/css" media="screen" href="/_css/ie6.css"/><![endif]-->
  28. <!--[if lte IE 7]><link rel="stylesheet" type="text/css" media="screen" href="/_css/ie7.css"/><![endif]-->
  29. </head>
  30.  
  31. <div id="wrapper">
  32. <div id="header">
  33. [Cabecera]
  34. </div><!--/header-->
  35.  
  36. <div id="container">
  37. <div class="column first sidebar">
  38. [lateral 1]
  39. </div>
  40.  
  41. <div id="content">
  42. [Contenido]
  43. </div>
  44.  
  45. <div class="column last sidebar">
  46. [lateral 2]
  47. </div>
  48. </div><!--/container-->
  49.  
  50. <div id="footer">
  51. [Pie]
  52. </div><!--/footer-->
  53. </div><!--/wrapper-->
  54. </body>
  55. </html>

URL: http://olgacarreras.blogspot.com/2007/02/plantilla-base-xhtml.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.