HTML body tag
December 19, 2009 # 12:04 AM # HTML tags # No CommentThe body tag in a HTML document defines the documents body. This includes the majority of the displayed content on the page, such as hyperlinks, images, etc.
Here is a basic HTML document with the body tag:
<html> <head> <title>HTML Document</title> </head> <body> Body content. </body> </html>
The body tag is supported by all major web browsers.
Body tag standard attributes:
| Attribute | Value | Information |
| class | classname | Specified class name to an element. |
| dir | rtl
ltr |
Specified text direction to an element. |
| id | id | Specified id name to an element. |
| lang | language_code | Specified language to an element. |
| style | style | Specified style definition to an element. |
0
Popularity: 1% [?]

Subscribe RSS
Comment RSS






