| A | B |
| <html> | Defines the root of an HTML document |
| <head> | Defines information about the document |
| <title> | Defines a title for the document; appears in the browser; not in the web page; must be in the head section |
| <body> | Defines the document's body; the visible content |
| <p> | Defines a paragraph |
| <h1> | Defines HTML headings; it is the largest relative to the others |
| <h2> | Defines HTML headings; it is the 2nd largest |
| <h3> | Defines HTML headings; it is the 3rd largest |
| <h4> | Defines HTML headings; it is the 4th largest |
| <h5> | Defines HTML headings; it is the 5th largest |
| <h6> | Defines HTML headings: it is the smallest relative to the others |
| <img src=> | Defines an image; src is a required attribute and alt is required |
| <a href=> | Anchor tag; defines a hyperlink; href is a required attribute |
| <hr> | Horizontal rule; defines a thematic change in the content |
| <br> | Break tag; Defines a single line break |