Introduction:
The HTML5
The HTML5
<figcaption> tag is used to provide a caption when using the <figure> tag.
<figcaption> tag is used to provide a caption when using the <figure> tag.<embed> tag is used for embedding an external application or interactive content into an HTML document.<details> tag specifies additional details that the user can view or hide on demand.<datalist> tag is used for providing an
"autocomplete" feature on form elements. It enables you to provide a
list of predefined options to the user as they input data. <datagrid> tag is used for specifying a datagrid. <datagrid>
element can contain other HTML elements. These elements are its
children. The contents of its children is the data that is being
presented.data DOM attribute. <data> tag is used for providing a
machine-readable version of its own contents. This can be useful in
cases where your data needs to be in a certain format because it may be
processed by a script, but this might not be the format that you'd like
your users to see. <canvas> tag is used for creating graphics on the fly. It can be used for rendering graphs, game graphics, or other visual images.To draw on the canvas, the <canvas> tag is used in conjunction with the getContext(contextId) method.Any content between the <canvas></canvas> tags is "fallback content"- meaning, it will be displayed only if the canvas cannot be displayed.The <canvas> tag was introduced in HTML 5.<bdi> tag is used on a span of text that is to be isolated from its surroundings for the purposes of bidirectional text formatting.This can be useful when displaying right-to-left text (such as
Arabic) inside left-to-right text (such as English) when the
text-direction is unknown. The <bdi> element allows
you to honor the correct directionality of text when this is unknown
(such as in the case with user-generated content).<aside> tag is used to represent content
that is related to the surrounding content within an article or web
page, but could still stand alone in its own right. This type of content
is often represented in sidebars. <article> tag is used to represent an article. More specifically, the content within the <article>
tag is independent from the other content on the site (even though it
could be related). By "independent" I mean that its contents could stand
alone, for example in syndication.<title> tag is used for declaring the title of the HTML document.<th> tag is used for specifying a header cell (or table header) within a table.<textarea> tag is used within a form to declare a textarea element - a control that allows the user to input text over multiple rows.<td> tag is used for specifying a cell (or table data) within a table.<table> tag is used for defining a table. The table tag contains other tags that define the structure of the table.