body { background-color: lightblue; }
<body bgcolor="some color"> HTML goes here </body>
body{ background: lightblue; }
/* Use the following code: */ html {background-color: #fefefe;} /* You can change the hexedecimal code to RGB, RGBA, name & more colors!*/
/* To apply color to background you have to use 'background-color' property and value of property is color name. */ html,body { background-color: blue; }