HTML 5 Features and Capabilities
HTML 5 Features and Capabilities
HTML 5 Features and Capabilities
ABOUT
FEATURES
Validating forms is never been so easy Various new input types New tags like <video> , <audio> and <meter>
Input type email Input type number Input type range for slider input Input types date and time The attribute required to specify the required fields of the form The attribute placeholder to specify the placeholder for a particular field in form The pattern attribute
<video src="movie.ogg" width="320" height="240" controls="controls"> </video> This is just what we need to write to embed a video in a page No need of flash at all :) Loop,controls,preload,poster,width,height
<audio src="horse.ogg" controls="controls"> </audio> As easy as you like Again no flash required Loop,controls,preload,src
Used to display the meter bar based on the value <meter value="2" min="0" max="10">2 out of 10</meter><br /> <meter value="0.6">60%</meter> High,low,max,min,optimum,value
WEB STORAGE
Session storage
Stores data for a browser session Stores data with no time limit
Local storage
TO FINISH OFF
Several other tags like figcaption,header,footer No need for type in link and script tags Less is the code more is the productivity Device independent Still under development Few browser support most features of HTML5 as up to now
THANKS ! :)