Google News
logo
HTML5 - Interview Questions
What are the various tags provided for better structuring in HTML5 ?
The various tags provided for better structuring in HTML 5 are:

<article> - This tag defines an article.
<aside>   - It defines content other than the page content.
<bdi>       - This tag isolates a part of text for formatting in a different direction from other text.
<command>   -  It defines a command button to be invoked by the user.
<details>         -  It defines additional details that can be viewed or hidden by the user.
<dialog>         -  It defines a dialog box.
<figure>          -  This tag specifies content like illustrations, diagrams, photos, code listings, etc.
<figcaption>  -  It is used to provide a caption for a <figure> element
<footer>         -  This tag defines a footer for a document or section
<header>       -  This tag is used to define a header for a document or section
<hgroup>       -  When there are multiple levels in a heading, it groups a set of <h1> to <h6> elements. 

Advertisement