-
HTML Web Storage
The Web Storage is one of the great features of HTML5. With the Web Storage feature, web applications can locally store data within the browser on the client side. It stores data in the form of key/value pair on the browser. Web Storage sometimes also known as DOM storage. Storing data with the help of web…
-
HTML5 Geolocation
The Geolocation is one of the best HTML5 API which is used to identify the user’s geographic location for the web application. This new feature of HTML5 allows you to navigate the latitude and longitude coordinates of the current website’s visitor. These coordinates can be captured by JavaScript and send to the server which can…
-
HTML Drag and Drop
HTML Drag and Drop (DnD) is a feature of HTML5. It is a powerful user interface concept which is used to copy, reorder and delete items with the help of mouse. You can hold the mouse button down over an element and drag it to another location. If you want to drop the element there, just release…
-
HTML Canvas Tag
The HTML canvas element provides HTML a bitmapped surface to work with. It is used to draw graphics on the web page. The HTML 5 <canvas> tag is used to draw graphics using scripting language like JavaScript. The <canvas> element is only a container for graphics, you must need a scripting language to draw the graphics. The <canvas> element…
-
HTML SVG
The HTML SVG is an acronym which stands for Scalable Vector Graphics. HTML SVG is a modularized language which is used to describe graphics in XML. It describe two-dimensional vector and mixed vector/raster graphics in XML. It is a W3C recommendation. SVG images and their behaviors are defined in XML text files. So as XML files, you…
-
HTML Video Tag
HTML 5 supports <video> tag also. The HTML video tag is used for streaming video files such as a movie clip, song clip on the web page. Currently, there are three video formats supported for HTML video tag: Let’s see the table that defines which web browser supports video file format. Browser mp4 webM ogg…
-
HTML Audio Tag
HTML audio tag is used to define sounds such as music and other audio clips. Currently there are three supported file format for HTML 5 audio tag. HTML5 supports <video> and <audio> controls. The Flash, Silverlight and similar technologies are used to play the multimedia items. This table defines that which web browser supports which audio…
-
HTML5 Migration
HTML5 migration specifies that how to migrate from HTML4 to HTML5. Let?s see how to convert HTML4 page into HTML5 page without any problem in content or structure. Table: In HTML4 In HTML5 <div id=”header”> <header> <div id=”menu”> <nav> <div id=”content”> <section> <div class=”article”> <article> <div id=”footer”> <footer> Let’s see a typical HTML4 page. Example:…
-
HTML5 Semantics
In any language, it is essential to understand the meaning of words during communication. And if this is a computer communication then it becomes more critical. So HTML5 provides more semantic elements which make easy understanding of the code. Hence Semantics defines the meaning of words and phrases, i.e. Semantic elements= elements with a meaning.…
-
HTML Google Maps
HTML Google Map is used to display maps on your webpage. You can simply add a map on your basic HTML page. Syntax: Set the Map Size You can set the map size by using the following syntax: How to create a function to set the map properties? You can set the map properties by…
