In this article we will learn about some of the frequently asked HTML programming questions in technical like “html change background color of page” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “html change background color of page” Code Answer’s.
html change background color
xxxxxxxxxx
1
<!DOCTYPE html>
2
<html>
3
<body style="background-color:powderblue;">
4
5
</body>
6
</html>
7
html how to change background color
xxxxxxxxxx
1
<body style="background-color:powderblue;">
2
<p style="background-color:tomato;">This paragraph has a red background.</p>
3
</body>
how to change the background in html
xxxxxxxxxx
1
<body style="background-color: anything you want">
2
[insert 10000 lines of code here]
3
4
</body>
html change background color of page
xxxxxxxxxx
1
<body bgcolor="some color">
2
HTML goes here
3
</body>