| by Achyut Kendre | No comments

HTML 5 – Geo Location API

The HTML5 geolocation feature lets you find out the geographic coordinates (latitude and longitude numbers) of the current location of your website’s visitor. This feature is helpful for providing better browsing experience to the site visitor. Check for Browser compatibility The geolocation property of the global navigator object can be used to detect the browser […]

Read More
| by Achyut Kendre | No comments

What is Web worker in HTML 5?

When executing scripts in an HTML page, the page becomes unresponsive until the script is finished. Even when you want to execute the multiple scripts you need to execute it sequentially, you can not execute it paralally. A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the […]

Read More
| by Achyut Kendre | No comments

What is Web Storage in HTML5?

The HTML5’s web storage feature lets you store some information locally on the user’s computer, similar to cookies. Web storage is more better option than the cookies, as per security is concern both are same. The information stored in the web storage isn’t sent to the web server as opposed to the cookies. Cookies let […]

Read More
| by Achyut Kendre | No comments

HTML 5 – Video , Audio

Built in Video/Audio HTML5 features include native audio and video support without the need for Flash. The HTML5 <audio> and <video> tags make it simple to add media to a website. You need to set src attribute to identify the media source and include a controls attribute so the user can play and pause the […]

Read More
| by Achyut Kendre | No comments

Graphics in HTML 5

This article is in continousation of previous article, here we will try to understand two features of HTML 5 No Need of Plugins HTML 5 do not need any third party plugins for graphics like flash, silver light, it has built tin facilities to create the graphics using html and JavaScript. You also do not […]

Read More
| by Achyut Kendre | No comments

What is HTML5?

HTML5 is the latest version of Hypertext Markup Language, the code that describes web pages. It’s actually three kinds of code: HTML, which provides the structure; Cascading Style Sheets (CSS), which take care of presentation; and JavaScript, which makes things happen. HTML5 has been designed to deliver almost everything you’d want to do online without […]

Read More