Introduction To CSS
Background Properties

The following applies a background to the HTML element specified.

background-color: colorname;

This could be used with the <body> tag to specify the background for the whole page. For example,

BODY {
background-color: black;
}