how to add background when css code example
Example 1: html change background color of page
<body bgcolor="some color">
HTML goes here
</body>
Example 2: add background image in css
.w {
background-image: url("images/tom1.png");
}
.a {
background-image: url("images/tom2.png");
}
.s {
background-image: url("images/tom3.png");
}