Write a HTML code to change the colour of webpage background?
Answers
Answered by
4
Answer:
<!DOCTYPE html>
<html>
<head>
<title>HTML Backgorund Color</title>
</head>
<body style="background-color:grey;">
<h1>Products</h1>
<p>We have developed more than 10 products till now.</p>
</body>
</html>
Answered by
3
Answer:
<html>
<head>
<title>Change the colour of webpage background </title>
</head>
<body bgcolor="black" >
</body>
</html>
Similar questions