Computer Science, asked by TheIMMORTAL7033, 11 months ago

Write a small html document to set background color by using css

Answers

Answered by dhruvalbhinsara460
1

Answer:<html>

<body bgcolor="#ce21de9">

<h1>Hello world!</h1>

<p>This s gonna be good </p>

</body>

</html>

Explanation:

Answered by Anonymous
1

Answer:

<!doctype html>

<html>

<head>

<title> My Website </title>

</head>

<body bgcolor="gray">

<h1> HTML For Beginners </h1>

<p> Learn basics of HTML </p>

</body>

</html>

Similar questions