To change the color of the background on a page, decide what color you want and
then add an attribute to the <body> tag call bgcolor. 1. To use color names, simply use the name of the color as the value to bgcolor |
<body bgcolor=green> |
2. To use color numbers for backgrounds. The value of the bgcolor
attribute to <body> is the hexadecimal number. |
<body bgcolor=#934ce8> |
|