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

HTML5 Tutorial FeedBurner

The HTML5 <html> Tag  
The HTML5 <html> tag is utilized as the main container of all the other elements that are placed within the content of the HTML document. However, it is not supposed to be used for <!DOCTYPE> tag. The HTML5 <html> tag is also utilized as the tool in indicating the root of the HTML document.

The only difference between the use of <html> tag in HTML4.0 and HTML5 is that there is a new attribute that is added to HTML5 <html> tag. It is the manifest attribute. For the Global Attributes, the HTML5 <html>tag is compatible with those.

The attributes and description for HTML5 <html> tag are below:

Attribute

Value

Description

Manifest (NEW)

URL

This is important when determining the address that is used for the cache manifest. It is important for browsing while on offline mode

xmlns

http://www.ex.org/1999/xhtml

Putting this attribute is important if you intend to comply with XHTML. This is the key in identifying the XML namespace attribute

Print HTML5 <html> Tag Bookmark HTML5 <html> Tag

Related Articles  
The HTML5 <progress> Tag
Using the HTML5 <progress> tag is not as easy as utilizing other tags for HTML5. It has limited compatibility ...
The HTML5 <u> Tag
The HTML5 <u> tag is no longer functional in HTML5. Before, the purpose of using HTML <u> tag is to put an ...
The HTML5 <hr> Tag
The HTML5 <hr> tag is an integral part within the content of a document. HTML5 is mainly used so that the break ...
The HTML5 <b> Tag
The HTML5 <b> tag is used to specify bold text. It is supported by all major browsers like Safari, Firefox, ...
The HTML5 <section> Tag
The HTML5 <section> tag is used to clarify a particular section within the document so that users can see ...
The HTML5 <button> tag
The HTML5 <button> tag is an element in HTML5 which defines a clickable button. The HTML5 <button> tag is ...
More