0
How i add background colour,what was the code for that
2 Answers
+ 2
Have you tried using the search for this section? Many have asked that same question.
+ 2
To add background you need to learn css.
In css type:
body {
background-color: red;
}
This will select body html tag and set background color to be red.