| 1 | a | inline | No | Defines a hyperlink. |
| 2 | abbr | inline | Yes | Represents an abbreviation or acronym. |
| 3 | address | block | Yes | Defines contact information. |
| 4 | article | block | Yes | Represents self-contained content. |
| 5 | aside | block | Yes | Defines content aside from the main content. |
| 6 | b | inline | No | Stylistically offsets text (bold by default). |
| 7 | blockquote | block | Yes | Defines a block of quoted text. |
| 8 | body | block | Yes | Defines the document body. |
| 9 | button | inline-block | No | Defines a clickable button. |
| 10 | caption | table-caption | Yes | Defines a table caption. |
| 11 | cite | inline | Yes | Defines a citation. |
| 12 | code | inline | Yes | Represents a fragment of computer code. |
| 13 | div | block | No | Defines a division or section in an HTML document. |
| 14 | dl | block | Yes | Defines a description list. |
| 15 | dt | block | Yes | Defines a term in a description list. |
| 16 | em | inline | Yes | Defines emphasized text (italic by default). |
| 17 | footer | block | Yes | Defines a footer for a document or section. |
| 18 | form | block | No | Defines an HTML form for user input. |
| 19 | h1, h2, h3, h4, h5, h6 | block | Yes | Defines HTML headings. |
| 20 | header | block | Yes | Defines a header for a document or section. |
| 21 | hr | block | No | Defines a thematic change in the content. |
| 22 | img | inline | No | Embeds an image. |
| 23 | input | inline-block | No | Defines an input field. |
| 24 | label | inline | No | Defines a label for an input element. |
| 25 | li | list-item | Yes | Defines a list item. |
| 26 | main | block | Yes | Specifies the main content of a document. |
| 27 | nav | block | Yes | Defines navigation links. |
| 28 | ol | block | Yes | Defines an ordered list. |
| 29 | p | block | Yes | Defines a paragraph. |
| 30 | pre | block | Yes | Defines preformatted text. |
| 31 | section | block | Yes | Defines a section in the document. |
| 32 | span | inline | No | Defines a span of text or elements. |
| 33 | strong | inline | Yes | Defines important text (bold by default). |
| 34 | table | table | Yes | Defines a table. |
| 35 | td | table-cell | Yes | Defines a cell in a table. |
| 36 | th | table-cell | Yes | Defines a header cell in a table. |
| 37 | tr | table-row | Yes | Defines a row in a table. |
| 38 | ul | block | Yes | Defines an unordered list. |