MEJOR SITIO PARA DESARROLLADORES WEB
W3Schools en español. La guía de etiquetas completa

Ua En De Fr

Etiqueta HTML <body>


Ejemplo

Un documento HTML simple:

<html>
<head>
  <title>Title of the document</title>
</head>

<body>
  <h1>This is a heading</h1>
  <p>This is a paragraph.</p>
</body>

</html>
Try it Yourself »

Más ejemplos de "Try it Yourself" ("Pruébelo usted mismo") a continuación.


Definición y uso

La etiqueta <body> define el cuerpo del documento.

El elemento <body> contiene todo el contenido de un documento HTML, como encabezados, párrafos, imágenes, hipervínculos, tablas, listas, etc.

Nota: Sólo puede haber un elemento <body> en un documento HTML.


Soporte del navegador

Elemento
<body> Yes Yes Yes Yes Yes

Atributos globales

La etiqueta <body> también soporta los Atributos Globales en HTML.


Atributos del evento

La etiqueta <body> también soporta los Atributos de Evento en HTML.


Más ejemplos

Ejemplo

Agregar una imagen de fondo a un documento (con CSS):

<html>
<head>
<style>
body {
  background-image: url(w3s.png);
}
</style>
</head>
<body>

<h1>Hello world!</h1>
<p><a href="https://www.w3schools.com">Visit W3Schools.com!</a></p>

</body>
Try it Yourself »

Ejemplo

Establecer el color de fondo de un documento (con CSS):

<html>
<head>
<style>
body {
  background-color: #E6E6FA;
}
</style>
</head>
<body>

<h1>Hello world!</h1>
<p><a href="https://www.w3schools.com">Visit W3Schools.com!</a></p>

</body>
Try it Yourself »

Ejemplo

Establecer el color del texto en un documento (con CSS):

<html>
<head>
<style>
body {
  color: green;
}
</style>
</head>
<body>

<h1>Hello world!</h1>
<p>This is some text.</p>
<p><a href="https://www.w3schools.com">Visit W3Schools.com!</a></p>

</body>
</html>
Try it Yourself »

Ejemplo

Establecer el color de los enlaces no visitados en un documento (con CSS):

<html>
<head>
<style>
a:link {
  color:#0000FF;
}
</style>
</head>
<body>

<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
<p><a href="https://www.w3schools.com/html/">HTML Tutorial</a></p>

</body>
</html>
Try it Yourself »

Ejemplo

Establecer el color de los enlaces activos en un documento (con CSS):

<html>
<head>
<style>
a:active {
  color:#00FF00;
}
</style>
</head>
<body>

<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
<p><a href="https://www.w3schools.com/html/">HTML Tutorial</a></p>

</body>
</html>
Try it Yourself »

Ejemplo

Establecer el color de los enlaces visitados en un documento (con CSS):

<html>
<head>
<style>
a:visited {
  color:#FF0000;
}
</style>
</head>
<body>

<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
<p><a href="https://www.w3schools.com/html/">HTML Tutorial</a></p>

</body>
</html>
Try it Yourself »

Páginas Relacionadas

Tutorial HTML: HTML Elementos.

Referencia DOM HTML: Objeto Body.

Referencia DOM HTML: document.body Property.


Configuración CSS predeterminada

La mayoría de los navegadores mostrarán el elemento <body> con los siguientes valores predeterminados:

Ejemplo

body {
  display: block;
  margin: 8px;
}

body:focus {
  outline: none;
}
Try it Yourself »

Nota. De acuerdo con la especificación HTML5, la etiqueta <body> es opcional, las páginas html funcionarán sin ella. Pero aún se recomienda utilizar la etiqueta <body> para la visualización correcta de páginas web en algunas aplicaciones web y para evitar errores en su trabajo.