This element represents a resolution-dependent bitmap canvas, which can be used for rendering graphs, game graphics, or other visual information.
<canvas class="class-name" id="canvas-id-name">
...
</canvas>
The caption element represents the title of the table that is its parent, if it has a parent and that is a table element.
<table>
<caption>Caption for TABLE element</caption>
...
</table>
This element represents the title of a work (e.g. a book, a paper, an essay, a poem, a score, a song, a script, a film, a TV show, a game, a sculpture, a painting, a theatre production, a play, an opera, a musical, an exhibition, a legal case report, etc). This can be a work that is being quoted or referenced in detail (i.e. a citation), or it can just be a work that is mentioned in passing.
<cite><a href="#">Phenomenal Woman</a></cite>
This element represents a fragment of computer code. This could be an XML element name, a filename, a computer program, or any other string that a computer would recognize.
CODE element
in a sentence.
<code>CODE element</code>
This element represents one or more columns in the column group represented by that colgroup.
<table>
<col class="col1-class-name">
<col class="col2-class-name">
<col class="col3-class-name">
...
</table>
This element represents a group of one or more columns in the table that is its parent, if it has a parent and that is a table element.
<table>
<colgroup class="colgroup1-class-name">
<col>
<col>
</colgroup>
<colgroup class="colgroup2-class-name">
<col>
</colgroup>
...
</table>
This element represents a command that the user can invoke. A command can be part of a context menu or toolbar, using the menu element, or can be put anywhere else in the page, to define a keyboard shortcut.
<menu>
<command type="command" label="Save">Save</command>
</menu>