XHTML-Estructura Básica

Versión para impresiónVersión PDF

La estructura básica de una página web es la siguiente: Etiquetas

< html></html>

Es la etiqueta raíz de nuestra web, encierran al resto de etiquetas con alguna excepción que veremos en su momento Etiquetas

<head></head>

Esta se utiliza para adjuntar información variada relacionada con la web, como ficheros auxiliares (css, JavaScript, meta-etiquetas, ..), scripts o estilos incrustados directamente en la página web, el título de la página web, ....

< html>
<head>

</head>

</html>

Etiquetas

<title></title>

Esta etiqueta no es estrictamente necesaria aunque si, muy recomendable, por lo que la incluyo en el formato básico, Se utiliza para poner un título a la página, este título es el que aparece en el título de la ventana del navegador o en la pestaña correspondiente

< html>
<head>
<title>Título de la página web</title>
</head>

</html>

Etiquetas

<body></body>

Esta etiqueta representa el cuerpo del contenido de nuestra página web todo lo que se ve en la ventana del navegador deberá estar dentro de estas etiquetas

< html>
<head>
<title>Título de la página web</title>
</head>
<body>
Contenido de la web
</body>
</html>

Quedando el código completo así:

< html>
<head>
<title>Título de la página web</title>
</head>

<body>
Contenido de la web
</body>
</html>

 

Añadir nuevo comentario

(If you're a human, don't change the following field)
Your first name.
(If you're a human, don't change the following field)
Your first name.
(If you're a human, don't change the following field)
Your first name.

Plain text

  • No se permiten etiquetas HTML.
  • Saltos automáticos de líneas y de párrafos.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
CAPTCHA de imagen
Introduzca los caracteres mostrados en la imagen.