Answer: We can use either bgcolor in Body tag or background-color in style tag to change background color of a page.
For ex:-
<body bgcolor="yellow">
//Or we can also write as
<style>
body
{
background-color:yellow;
}
</style>
Asked In: Many Interviews |
Alert Moderator