This element represents the main content area of the body of a document or application.
<main class="class-name" id="main-id-name" role="main">
This is a MAIN element
</main>
This element, in conjunction with any area element descendants, defines an image map. The element represents its children.
<img src="image-name.png" usemap="#map-name" alt="ALT">
<map name="map-name">
<area shape="rect" coords="0,0,100,100" href="url1.html" alt="ALT1">
<area shape="rect" coords="100,100,100,100" href="url2.html" alt="ALT2">
</map>
This element represents a run of text in one document marked or highlighted because of its relevance in another context.
<mark>This is the MARK element</mark>
This element represents a list of commands.
<menu type="toolbar">
This is the MENU element
</menu>
This element defines a command/menu item that the user can invoke from a popup menu.
<menuitem>
This is the MENUITEM element
</menuitem>
This element represents various kinds of metadata that cannot be expressed using the title, base, link, style, and script elements.
<meta http-equiv="X-UA-Compatible" content="IE=edge">
This element defines a scalar measurement within a known range, or a fractional value. This is also known as a gauge.
<meter value="2" min="0" max="10">2 out of 10</meter>