how to change the background color of website html css code example
Example 1: html how to change background color
<body style="background-color:powderblue;">
<p style="background-color:tomato;">This paragraph has a red background.</p>
</body>
Example 2: css change background color of page
/* Use the following code: */
html {background-color: #fefefe;}
/* You can change the hexedecimal code to RGB, RGBA, name & more colors!*/