HTML - bgcolor
bgcolor code
the bgcolor attribute of BODY tag specifies the color of the whole document. Also, XHTML 1.1 the attribute 'bgcolor' is not permitted for the
tag.<html> <head> <title>Hello World</title> </head> <body bgcolor = "yellow"> Hello World!!!! </body> </html> |
View above example output in a new browser window |
body text color code
This sets the text colour of the text within body tag. In XHTML 1.1 the attribute 'text' is not permitted for the
tag.<html> <head> <title>Hello World</title> </head> <body text="red"> Hello World!!!! </body> </html> |
View above example output in a new browser window |