Simplex

HTML elements

C elements


canvas

This element represents a resolution-dependent bitmap canvas, which can be used for rendering graphs, game graphics, or other visual information.

N/A
<canvas class="class-name" id="canvas-id-name">
  ...
</canvas>

caption

The caption element represents the title of the table that is its parent, if it has a parent and that is a table element.

N/A
<table>
  <caption>Caption for TABLE element</caption>
  ...
</table>

cite

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.

The poem Phenomenal Woman was written by Maya Angelou.
<cite><a href="#">Phenomenal Woman</a></cite>

code

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.

This is the CODE element in a sentence.
<code>CODE element</code>

col

This element represents one or more columns in the column group represented by that colgroup.

N/A
<table>
  <col class="col1-class-name">
  <col class="col2-class-name">
  <col class="col3-class-name">
  ...
</table>

colgroup

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.

N/A
<table>
  <colgroup class="colgroup1-class-name">
    <col>
    <col>
  </colgroup>
  <colgroup class="colgroup2-class-name">
    <col>
  </colgroup>
  ...
</table>

command

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.

N/A
<menu>
  <command type="command" label="Save">Save</command>
</menu>