Computer Science, asked by kiki471, 2 months ago

Write a HTML code to change the colour of webpage background? ​

Answers

Answered by yashvi193
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 Anonymous
3

Answer:

<html>

<head>

<title>Change the colour of webpage background </title>

</head>

<body bgcolor="black" >

</body>

</html>

Similar questions