Construct a HTML document with CSS to Set the background colour of a page.


Input


<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color: red;
}
</style>
</head>
<body>

<h1>The background-color Property</h1>

<p>The background color can be specified with a color name.</p>

</body>
</html>




Output


No comments:

Post a Comment