Quackit Logo

Got a MySpace Page?

Get "www.yourname.com" for your MySpace page. Learn how >>.

HTML body Tag

Print Version
 

The HTML body tag is used for indicating the main content section of the HTML document. The body tag is placed between the </head> and the </html> tags.

Note that the attributes for the body tag are deprecated - you should use CSS for defining the presentation of your document body. For example, see CSS background-color and CSS text-decoration.

Example
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>HTML body tag</title>
</head>
<body style="background-color:orange">
Document content goes here
</body>
</html>
Attributes:
Attributes specific to this tag:
AttributeDescription
backgroundSpecifies the URI/URL of a background image. This attribute is now deprecated.
textSpecifies the text color. This attribute is now deprecated.
linkSpecifies the color of unvisited hyperlink text. This attribute is now deprecated.
vlinkSpecifies the color of visited hyperlink text. This attribute is now deprecated.
alinkSpecifies the color of active hyperlink text (i.e. when the user clicks on it). This attribute is now deprecated.
Other Attributes:
AttributeDescription
classDocument wide identifier.
idDocument wide identifier
langLanguage code
dirSpecifies the direction of the text
titleSpecifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip").
styleInline style (CSS)
bgcolorBackground color. This attribute is now deprecated.
onloadIntrinsic event (see event handlers)
onunloadIntrinsic event (see event handlers)
onclickIntrinsic event (see event handlers)
ondbclickIntrinsic event (see event handlers)
onmousedownIntrinsic event (see event handlers)
onmouseupIntrinsic event (see event handlers)
onmouseoverIntrinsic event (see event handlers)
onmousemoveIntrinsic event (see event handlers)
onmouseoutIntrinsic event (see event handlers)
onkeypressIntrinsic event (see event handlers)
onkeydownIntrinsic event (see event handlers)
onkeyupIntrinsic event (see event handlers)
Try it yourself! HTML Editor


Also see the complete list of HTML tags


Enjoy this website?

  1. Link to this page (copy/paste into your own website or blog):
  2. Add this page to your favorite social bookmarks sites:
                     
  3. Add this page to your Favorites

Oh, and thank you for supporting Quackit!