background color body 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>
Example 3: background color using css
/* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
background-color: blue;
}
Example 4: how to change background color in css
body{
background: lightblue;
}
Example 5: background-color html
background-color=red;