Answer» <address>...</address>: The HTML address> element denotes that the enclosing HTML contains contact information for a person or group of people, or for a company. An example showing the usage of the address element is given below:
<address> Written by <a href="mailto:interviewbit@example.com">Kit Harrington</a>.<br> Find us at:<br> interviewbit.com<br> Mumbai<br> India </address> <article>...</article>: The HTML <article> element denotes a self-contained composition in a document, page, application, or site that is meant to be distributed or reused independently, for instance, in syndication. An example showing the usage of the article element is given below:
<article> <h2>HTML Cheatsheet</h2> <p>HTML is an important markup language for web development</p> </article> <aside>...</aside>: The HTML <aside> element denotes a section of a page whose content is only tangentially related to the main body of the document. An example showing the usage of the aside element is given below:
<aside> <h4>What's more on Interviewbit</h4> <p>Prepare for coding interviews of all companies at interviewbit</p> </aside> <header>...</header>: The HTML <header> element denotes introductory content, which is usually a collection of introductory paragraphs or aids to navigation. It may include certain heading elements, as well as a logo, a search form, an image and other elements such as the author's name. An example showing the usage of the header element is given below:
<header> <h1>Header over here</h1> <p>Content by Scaler</p> </header> <footer>...</footer>: The HTML <footer> element is used to create a footer for the sectioning content or sectioning root element that is closest to it. A footer usually includes information about the section's author, copyright information, or links to related papers. An example showing the usage of the footer element is given below:
<footer> <p>Author: Jon Snow</p> <p><a href="mailto:jonsnow@example.com">jon@example.com</a></p> </footer> <main>...</main>: The prominent material of a document's body is represented by the HTML <main> element. The primary content area contains stuff that is either directly related to or extends on the central theme, the theme of a document, or the fundamental functionality of an application. An example showing the usage of the main element is given below:
<main> <h1>The Heading tag</h1> </main> <h1> to <h6>: Six levels of section headers are represented by the HTML <h1> to <h6> elements. The highest level is <h1>. The lowest is <h6> at the section level. An example showing the usage of these elements is given below:
<h1>The Heading tag</h1> <h2>The Subheading tag</h2> <nav>...</nav>: The HTML <nav> element denotes a portion of a page that contains navigation links, either within the current document or to other documents. Menus, tables of contents, and indexes are all examples of navigation sections. An example showing the usage of the nav element is given below:
<nav> <a href="/oop/">Learn OOPs</a> | <a href="/c++/">Learn C++</a> | <a href="/os/">Learn Operating System</a> | </nav> <section>...</section>: The HTML <section> element specifies a standalone section within an HTML document that does not have a more particular semantic element to represent it. An example showing the usage of the section element is given below:
<section> <h2>More about Interviewbit</h2> <p>Interviewbit helps students prepare for technical interviews and crack the various interview rounds of companies</p> </section>
|