|
|
-
|
|
"time" tag is used to indicate content that is a time or date....
|
|
-
|
|
"embed" tag is used for embedded content, such as a plug-in....
|
|
-
|
|
"datagrid" tag creates a table that is built from a database or other dynamic source. Now this tag has been removed from HTML 5 specifications....
|
|
-
|
|
HTML 5 introduced a new element "Output", which can be used to semantically indicate the calculation results in a web page. Suppose, in your webpage, if you are showing some calculations, by marking the result with "output" tag, screen readers can under...
|
|
-
|
|
HTML 5 provides a new tag called, "legend", which can be used as caption for fieldset, figure or details element. This tag can be used to show title/caption for a group of elements. Suppose, in an application form, we can group the educational details ...
|
|
-
|
|
In HTML 5, "sup" tag has been introduced for defining superscript text. If you want to show some part of text as superscript, wrap the text with "sup" tag.
**Example:**
What is the return type of Execute XML Reader? New.
Above html markup shows "...
|
|
-
|
|
In HTML 5, "ins" tag has been introduced, which will be used to indicate that the text has been inserted into document. When the text is marked with "ins" tag, browsers will show the text as strikeout.
**Example:**
Press Tab Ctrl+Down to reach...
|
|
-
|
|
In HTML 5, "ins" tag has been introduced, which will be used to indicate that the text has been inserted into document. When the text is marked with "ins" tag, browsers will render the text with "underline".
**Example:**
Press Tab Ctrl+Down to ...
|
|
-
|
|
HTML 5 introduced a tag "bdo", Bi-Directional override, which can be used to change default text flow direction. Suppose, if we want to display text in right to left, we can use bdo tag with direction attribute as "rtl"
bdo tag will overr...
|
|
-
|
|
"kbd" element denotes, the text inside it will be given as input. Its not only refers to keyboard input, it also refers to mouse input or voice commands etc also. By marking the text with "kbd", it renders the content with special font.This will help sc...
|
|