|
|
-
|
|
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, "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...
|
|
-
|
|
In HTML5, Blockquote tag has been introduced for the long quotations, that span across multiple lines. If the quotation is short, its advised to use "q" tag.
This helps in screen readers to semantically analyze the document and used to find out the quot...
|
|
-
|
|
In HTML 5, hgroup tag has been introduced to help screen readers to semantically analyze page content.
Suppose, in your document or section, if you are showing multiple headings of different levels(h1..h6), you can include these inside hgroup tag.
Exa...
|
|
-
|
|
HTML 5 introduced a new tag "Figcaption", which helps screen readers to semantically analyze page content and structure.
Figcaption tag represents caption or legend for a figure. Only one Figcaption tag is allowed for a figure.
...
|
|
-
|
|
HTML 5 introduced "Figure" tag, which helps screen readers to semantically analyze the page content. From the name "Figure", often developers misunderstand this tag and will think of related only to images. However, "Figure" tag belongs to more broader ...
|
|
-
|
|
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. Footer tag can be used to indicate the footer part of any article/section/document.
A d...
|
|