Google News
logo
HTML - Interview Questions
How to change background color using HTML?
The back ground color of HTML can be change attribute bgcolor in the <body> tag.

Example : 

<html>
  <body bgcolor="#FF00FF">
    <h1>Welcome to FreshersEmploy.com</h1>
    <p>Hello Job Seekers<p>
  </body>
</html>
Advertisement