bg color is the abbreviation of background color there is a command used in HTML which set the background color which u want
The BODY tag is the one you should reference if you want to set the background color of the entire webpage, using the bgcolor attribute. For example: <body bgcolor="Blue"> This should be done using CSS. In an internal or external sheet, you want a rule similar to the following: body {background-color: #ff00ff;} If you insist on doing it inline (for whatever reason) you want to attach the STYLE attribute to the BODY tag directly, and use the same rule. <body style="background-color:#f0f;">
If for an image: <body background="images/background.jpg"> or if for a color: <body bgcolor="#000000">
A tag can have an additional setting in it. This is an attribute. The attributes can then be given values. For example the body tag has an attribute to set the background colour of the page. The attribute is bgcolor. What colour you specify is the value, in this case it is red: <body bgcolor="Red">
The color of a hyperlink that has not been clicked can be specified by setting the "BGCOLOR" attribute in the HTML tag.
Two different ways you can do this: in the <body> tag, modify it to include: <body bgcolor="red"> you can also use hexadecimal (1-9 a-f) numbers to make a color, for HGB colors go to w3schools for a full reference, to use these colors include: <body bgcolor="#FFFFFF"> that will just give you a white background but you know the layout now!!!