Thursday, 8 August 2013

HTML body Tag

Introduction:

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.

Example:
<html>
<head>
<title>HTML body tag</title>
</head>
<body style="background-color:orange">
Document content goes here
</body>
</html>

No comments:

Post a Comment