This document discusses HTML5 and the progress towards a semantic web. It provides an overview of new HTML5 features like headers, navbars, sections and articles to structure web pages semantically. It also covers other HTML5 technologies like web workers, web storage, CSS3 and forms. The document encourages developers to get involved with standards bodies to help advance the semantic web. It provides examples of using new HTML5 features and technologies like web storage, web workers and CSS3 properties.
1 of 18
More Related Content
Html 5 a step towards semantic web
1. HTML 5 - A step towards semantic webSachinKhoslaFounder, digimantra
2. Whats coming ?HTML Show me what is it ?Latest in the WEBWeb WorkersWEB storage APICSS3Semantic WEBDEMOS
3. HTML5What ? When ? How ?W3C & WHATWGWeb Hypertext Application Technology Working Group Logo
10. Spawning a workervarmyWorker = new Worker('my_worker.js');myWorker.onmessage = function(event) { //event has the data or the return values alert("Called back by the worker!");};
11. Web StorageWhy do we require this ?How do we do it ?CookieHidden form valuesQuery stringhttp://dev.w3.org/html5/webstorage/