How do I change background color of a website?

How do I change background color of a website ?

<style>body { background: red }</style>

Hi @Pavani_Tammana! As @supercat441 said, you can use CSS to add a background color to your website, like this:

/* mystyles.css */
body {
  background-color: <color>;
}
<!-- index.html -->
<link rel="stylesheet" href="mystyles.css">

Here’s a great tutorial for more information about CSS: CSS Tutorial

Please mark this post as “solved” if I helped so people know it has been solved