Give an example to apply a background colour to an HTML document using the CSS background-color property.
Example 1: html change background color of page
<body bgcolor="some color">
HTML goes here
</body>
Example 2: css transparent background color
div {
opacity:25% ;
}