container background color css code example
Example 1: how to change the page background in css
body {
/* this changes the page's background to green */
background-color: green;
}
Example 2: html change background color of page
<body bgcolor="some color">
HTML goes here
</body>