Logo
  Sunday, May 20, 2012
Sign-In  |  Sign-Up  |  Contact Us  | Bookmark |  RSS Feed

HTML5 Tutorial FeedBurner

The HTML5 <body> tag  
The HTML5 <body> tag is an element which defines the coding of an HTML document where all the contents of the actual document start. The HTML5 <body> tag has been a part of the HTML specifications. In HTML5, all <body> tag specific attributes are removed. On the other hand, the attributes in HTML 4.01 are considered obsolete.

Here is how the HTML5 <body> tag is used:

<html>

<head>

<title>This is where the title of the document appears</title>

</head>

 

<body>

The actual content of the document should be placed here...

</body>

 

</html>

The HTML5 <body> tag is supported in all major browsers such as , Internet Explorer, Firefox, Opera, Google Chrome, and Safari.

The HTML5 <body> tag is capable of supporting the Global Attributes and the Event Attributes in HTML5.

Print HTML5 <body> tag Bookmark HTML5 <body> tag

Related Articles  
The HTML5 <frame> Tag
The HTML <frame> tag is not supported in HTML5. Before the use of HTML5, the HTML <frame> tag is utilized ...
The HTML5 <big> Tag
The <big> tag is not supported in HTML5. CSS is needed to reach desired effect when seen on web browsers.
The HTML5 <kbd> Tag
When creating an HTML document, the purpose of HTML5 <kbd> tag is to specify a keyboard input. It is for the text ...
The HTML5 <footer> Tag
The HTML5 <footer> tag is necessary for adding a footer for a particular document which serves as supplementary ...
The HTML5 <dl> Tag
The purpose of adding <dt> is to specify the item that is found within the list. The HTML5 <dl> tag is also ...
The HTML5 <form> Tag
The HTML5 <form> tag is utilized such that a form that can be answered by the user may be incorporated within the ...
More