css for 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 {
  /*type your styling here*/
}

Example 3: adding background image css

/* Answer to: "adding background image css" */

/*
  The background-image property sets one or more background images
  for an element.

  By default, a background-image is placed at the top-left corner
  of an element, and repeated both vertically and horizontally.

  Tip: The background of an element is the total size of the
  element, including padding and border (but not the margin).

  Tip: Always set a background-color to be used if the image is
  unavailable.
*/

/* Set a background-image for the <body> element: */

body {
 background-image: url("paper.gif");
 background-color: #cccccc;
}

/* Set two background images for the <body> element: */

body {
  background-image: url("img_tree.gif"), url("paper.gif");
  background-color: #cccccc;
}

Example 4: 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>