background color in css inline cs code example
Example 1: connext html file to css
<link rel="stylesheet" type="text/css" href="style.css">
Example 2: how to change the page background in css
body {
/* this changes the page's background to green */
background-color: green;
}