web page background color code example

Example 1: html change background color

<!DOCTYPE html>
<html>
<body style="background-color:powderblue;">

</body>
</html>

Example 2: website background colour

body {
  background-color: lightblue;
}

Example 3: how to change the page background in css

body {
  /* this changes the page's background to green  */
  background-color: green;
}

Example 4: html change background color of page

<body bgcolor="some color">
 HTML goes here
</body>

Example 5: how to change background color in css

body{
  background: lightblue;
}

Tags:

Css Example