Html5

See Also

html5

Reference

http://www.cnblogs.com/powertoolsteam/archive/2011/04/27/2029988.html

Google http://www.html5rocks.com/en/mobile
Apple http://www.apple.com/html5/
Microsoft http://ie.microsoft.com/testdrive/

Technologies depends on Html5

HTML5 Trend

HTML5 Buddies

HTML5 Feature

Markup

HTML5 introduces elements and attributes that reflect typical usage on modern websites. Some of them are semantic replacements for common uses of generic block (<div>) and inline (<span>) elements, for example <nav> (website navigation block), <footer> (usually referring to bottom of web page or to last lines of HTML code), or <audio> and <video> instead of <object>.[28][29][30] Some deprecated elements from HTML 4.01 have been dropped, including purely presentational elements such as <font> and <center>, whose effects have long been superseded by the much more powerful Cascading Style Sheets. There is also a renewed emphasis on the importance of DOM scripting (e.g., JavaScript) in Web behavior.

The HTML5 syntax is no longer based on SGML[31][32] despite the similarity of its markup. It has, however, been designed to be backward compatible with common parsing of older versions of HTML. It comes with a new introductory line that looks like an SGML document type declaration, <!DOCTYPE html>, which triggers the standards-compliant rendering mode.[33] As of 5 January 2009, HTML5 also includes Web Forms 2.0, a previously separate WHATWG specification.

New APIs

In addition to specifying markup, HTML5 specifies scripting application programming interfaces (APIs) that can be used with JavaScript.[34] Existing document object model (DOM) interfaces are extended and de facto features documented. There are also new APIs, such as:
HTML5 related APIs.[35]

The canvas element for immediate mode 2D drawing. See Canvas 2D API Specification 1.0 specification[36]
Timed media playback
Offline Web Applications[37]
Document editing
Drag-and-drop
Cross-document messaging[38]
Browser history management
MIME type and protocol handler registration
Microdata
Web Storage, a key-value pair storage framework that provides behaviour similar to cookies but with larger storage capacity and improved API.[39]

Not all of the above technologies are included in the W3C HTML5 specification, though they are in the WHATWG HTML specification.[40] Some related technologies, which are not part of either the W3C HTML5 or the WHATWG HTML specification, are as follows. The W3C publishes specifications for these separately:

Geolocation
Web SQL Database, a local SQL Database (no longer maintained).[41]
The Indexed Database API, an indexed hierarchical key-value store (formerly WebSimpleDB).[42]
File API, handle file uploads and file manipulation.[43]
Directories and System. This API is intended to satisfy client-side-storage use cases not well served by databases.[44]
File Writer. An API for writing to files from web applications.[45]
Web Audio API, a high-level JavaScript API for processing and synthesizing audio in web applications.

Note

HTML5 alone cannot provide animation within web pages. Either JavaScript or CSS3 is necessary for animating HTML elements. Animation is also possible using JavaScript and HTML 4[46][not in citation given], and within SVG elements through SMIL, although browser support of the latter remains uneven as of 2011.

Hybrid Mobile Developing