The next major release of HTML, HTML5, is coming soon and I don’t know about you, but I am excited! The new specification has been in the works for several years now and is getting close to reaching completion but as of this writing, HTML5 is still in draft. HTML5 will replace DOM2HTML, HTML4 and XHTML1 and will be a single language, but you will be able to write code using HTML or XML syntax, and it will be backwards compatible. Here is a quick overview of what you have to look forward to when HTML5 is officially completed.
- Defining structure – New elements have been added that will help make it easier for a developer to structure their HTML in a consistent way. Some of these elements are
, ,
- Multimedia support – There are new tags that make it easier to embed rich multimedia content into your page. (ex:
- New inline elements have been added which help define some basic concepts such as
- Presentational elements no longer supported – The presentational elements and attributes, as well as the deprecated HTML4 elements have been removed (i.e.: , ,
,…etc.). Presentational elements will now be purely done with CSS.
New form input types have been added including datetime, month, week, number, range, email, url, etc. This will help to speed things up since now the user input on these fields can be verified before it’s sent to the server.
Dynamic pages – Ability to build a richer user experience with interactive elements like,
New attributes added to existing elements – There are several new attributes that have been added to existing elements. There are also a handful of HTML4 attributes that have become global (now apply to all elements), as well as some new global attributes that have been added in HTML5. (see “http://dev.w3.org/html5/html4-differences/#new-attributes” http://dev.w3.org/html5/html4-differences/#new-attributes for complete list).
More Here
Courtesy:http://www.objectpartners.com/2010/07/20/highlights-of-html5/