HTML | body text Attribute

Last Updated : 25 Mar, 2022

The HTML <body> text Attribute is used to define a color for the text in the Document. 
Note: The <body> text attribute is not supported by HTML5.  Instead of using this attribute, we can use css color property. 

Syntax: 
 

<body text="color_name | hex_number | rgb_number">


Attribute Values 
 

  • color_name: It specify the name of the color for the text in the Document.
  • hex_number: It specify the hex code of the color of the Text in the Document.
  • rgb_number: It specify the rgb value of the Text in the Document


Example: 
 

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>

Output: 
 


Supported Browsers: The browser supported by <body> Text Attribute are listed below: 
 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera


 

Comment