Canvas
The <canvas> element is used to draw graphics, on the fly, via scripting (usually JavaScript).
Caption
The <caption> element defines a table caption. A caption describes the table.
| Month | Savings | 
|---|---|
| January | $100 | 
Cite
          The <cite> element defines the title of a work (e.g. a book, a
          song, a movie, a TV show, a painting, a sculpture, etc.).
          
Phil Alden Robinson directed Field of Dreams is a
          good example.
        
Code
The <code> element defines a piece of computer code. By default, the content text inside a <code> element is displayed in the browser's default monospace font.
let x = Math.sin(degrees * Math.PI / 180)
      col and colgroup
          The <col> element defines column properties for each column
          within a <colgroup> element.
          
The <colgroup> element specifies a group of one or more
          columns in a table for formatting.
        
| Year | Month | Savings | 
|---|---|---|
| 2023 | January | $100 | 
| 2023 | February | $100 | 
Descriptions
- <canvas>
 - Defines a canvas for drawing graphics.
 - <caption>
 - Defines a table caption.
 - <cite>
 - Defines the title of a work.
 - <code>
 - Defines a piece of computer code.
 - <col>
 - Specifies column properties for each column within a <colgroup> element.
 - <colgroup>
 - Specifies a group of one or more columns in a table for formatting.