css body code example
Example 1: html body tage
<!DOCtype html>
<html>
<body>
<!--This is the HTML Body tag.-->
</body>
</html>
Example 2: how to style body using css
body {
}
Example 3: html body tag
<!DOCTYPE html>
<html>
<body>
<!--This is the HTML Body tag.-->
</body>
</html>
Example 4: adding background image css
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
body {
background-image: url("img_tree.gif"), url("paper.gif");
background-color: #cccccc;
}
Example 5: html body tag
<body>
<!-- this is the body,the body
lement contains all the contents of an HTML document,
such as headings, paragraphs, images, hyperlinks, tables,
lists, etc -->
</body>