El atributo HTML <body> bgcolor se utiliza para definir un color de fondo de un documento.
Nota : no es compatible con HTML5
Sintaxis:
<body bgcolor="color_name | hex_number | rgb_number">
Valores de atributos:
- color_name: Especifica el nombre del color de Fondo del Documento.
- hex_number: Especifica el código hexadecimal del color de Fondo en el Documento.
- rgb_number: Especifica el valor rgb del color de Fondo en el Documento
Ejemplo: En este ejemplo, simplemente establecemos el color de fondo del cuerpo en verde.
HTML
<!DOCTYPE html> <html> <!-- body tag starts here --> <body bgcolor="green"> <h2>GeeksforGeeks</h2> <p> It is a Computer Science portal For Geeks </p> </body> <!-- body tag ends here --> </html>
Producción:
Ejemplo: Este ejemplo describe el atributo HTML <body> bgcolor especificando el texto como verde y el fondo como color naranja.
HTML
<!DOCTYPE html> <html> <head> <title> HTML body Bgcolor Attribute </title> </head> <!-- body tag starts here --> <body text="green" bgcolor="orange"> <center> <h1>GeeksforGeeks</h1> <h2> HTML <body> bgcolor Attribute </h2> <p> It is a Computer Science portal For Geeks </p> </center> </body> <!-- body tag ends here --> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
- Borde de Microsoft
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA