write the procedure to add background colour to a webpage.
Answers
Answered by
29
To add a background color on webpage all you have to do is add bgcolor attribute with color property of body tag.
example: <body bgcolor="purple">
Answered by
31
By default the appearance of an HTML document is white which means that its text is black on white background .
you can add background and text colour.
the syntax to change the background colour is :
For example- <body bgcolor="yellow">
it makes the background yellow.
Similar questions