Original Purpose of HTML
Connecting to rich media, not just static documents
Web applications seem native
Hybrid Apps
Allows for:
Tools
Hover over the above to see which are part of HTML5
CSS
HTML5
JS API
Other
IE6-8 does not style elements that don't exist, so create the elements!
<!--[if IE]>
<script type="text/javascript">
(function(){
var html5elmeents ="article|aside|audio|canvas|...|video";
html5elmeents.split('|');
for(var i = 0; i < html5elmeents.length; i++){
document.createElement(html5elmeents[i]);
}
})();
</script>
<![endif]-->