|
|
-
|
|
HTML 5 introduced few tags to arrange the page content, which helps to screen readers to understand page structure and content. One of these new tags is Header tag. Header tag can be used to indicate the header part of any article/section/document.
A d...
|
|
-
|
|
In HTML 5, various structural tags has been introduced to arrange the page content, which makes page content and structure can be understandable to screen readers. One of these tags is "article" tag, which can be used to represent the independent conten...
|
|
-
|
|
In HTML 5, few structural tags has been added to arrange the page content in structural manner. This helps screen readers to understand the page. One of these tags is Section tag, which can be used to mark the different sections of page.
HTML 5 Specif...
|
|
-
|
|
In HTML 5, various structural tags has been introduced, which helps in creating a page in structural, hence will be useful for screen readers to understand the page content.One of these tags is "aside" tag has been introduced to arrange the related cont...
|
|
-
|
|
HTML 5 included many new tags which helps to structurally divide the page. This will be very much useful to screen readers and understanding page content. One of these tags is "nav", which can be used to indicate the major navigation content in a web pa...
|
|
-
|
|
While displaying a long word, some times it might broken into next line at wrong location. By using "wbr" tag, we can control the the places long word can be broken into next line.
Suppose to display a word "FailOverClustering", if the word breaks at "...
|
|
-
|
|
In HTML 5, one of the important additions is capability to play audio/video files in webpage. "source" tag is used for media resources for media elements, defined inside video or audio elements. By using this tag, we can declare the files to be played i...
|
|
-
|
|
Similar to audio, prior versions of HTML 5 required 3rd party plugins to play the video in browser. HTML 5 introduces the new element video element that brings native support for browsers to playback video files in the browser.
Example:
Below script ...
|
|
-
|
|
Prior to HTML 5, if you want to play audio in the browser, you are supposed to use Microsoft Silverlight, Adobe Flash, or other browser plugins. The ability to play the audio by the browser varies depending on the plugins available in the browser. HTML ...
|
|
-
|
|
This is one of the most interested features introduced. Canvas element allows you to build 2d graphics rendered to the html page. The contents can be drawn to the canvas using JavaScript, thus provides inbuilt capabilities of animations without the help...
|
|