El atributo de texto HTML <body> se utiliza para definir un color para el texto en el documento.
Nota: HTML5 no admite el atributo de texto <body>. En lugar de usar este atributo, podemos usar la propiedad de color css .
Sintaxis:
<body text="color_name | hex_number | rgb_number">
Valores de atributos
- color_name: Especifica el nombre del color para el texto en el Documento.
- hex_number: Especifica el código hexadecimal del color del Texto en el Documento.
- rgb_number: Especifica el valor rgb del Texto en el Documento
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML body Text Attribute</title> </head> <!-- body tag starts here --> <body text="green"> <center> <h1>GeeksforGeeks</h1> <h2>HTML <body> Text Attribute</h2> <p>It is a Computer Science portal For Geeks</p> </center> </body> <!-- body tag ends here --> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de texto <body> se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA