0
How do you change the background of a website
3 Answers
+ 1
body {background-color: color name;}
0
You can use Inline, External or internal CSS for this.
For inline
<body style="background-color:color-name;">
For internal CSS
You should write as
<style >
body {
background-color:color-name;
}
</style>
And for external CSS you may use above code except style tags in CSS file.