Friday, July 1, 2011

Body

HTML body Tag

The information on this page is based on HTML version 4.01 (which is the current version of HTML). The next version, HTML 5, is currently being written. Here's a list of HTML 5 tags.

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 in HTML 4.01 and obsolete in HTML 5. 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 "-http://dkdashing.blogspot.com/">
<*html>
<*head>
<*title>HTML body tag<*/title>
<*/head>
<*body style="background-color:orange">
Document content goes here
<*/body>
<*/html>



Attributes specific to this tag:



Attribute-- Description
background-- Specifies the URI/URL of a background image. This attribute is now deprecated.
text-- Specifies the text color. This attribute is now deprecated.
link-- Specifies the color of unvisited hyperlink text. This attribute is now deprecated.
vlink-- Specifies the color of visited hyperlink text. This attribute is now deprecated.
alink-- Specifies the color of active hyperlink text (i.e. when the user clicks on it). This attribute is now deprecated.



Other Attributes:



Attribute-- Description
class-- Document wide identifier.
id-- Document wide identifier
lang-- Language code
dir-- Specifies the direction of the text
title-- Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip").
style-- Inline style (CSS)
bgcolor-- Background color. This attribute is now deprecated.
onload-- Intrinsic event (event handlers)
onunload-- Intrinsic event (event handlers)
onclick-- Intrinsic event ( event handlers)
ondbclick-- Intrinsic event (event handlers)
onmousedown-- Intrinsic event (event handlers)
onmouseup-- Intrinsic event (event handlers)
onmouseover-- Intrinsic event (event handlers)
onmousemove-- Intrinsic event (event handlers)
onmouseout-- Intrinsic event (event handlers)
onkeypress-- Intrinsic event (event handlers)
onkeydown-- Intrinsic event (event handlers)
onkeyup-- Intrinsic event (see event handlers)



Try it Yourself



<*!doctype html public "-http://dkdashing.blogspot.com/">
<*html>
<*head>
<*title>HTML body tag
<*/head>
<*body style="background-color:orange">
<*p>DK DASHING...<*/p>
<*/body>
<*/html>


THANK YOU

No comments:

Post a Comment