| A | B |
| <html> | Identifies the document type as HTML. |
| <body> | Encloses the main portion of the document which the user sees. |
| <ol> | Creates a numbered list |
| <title> | Encloses the text that will appear in the browser title bar when the page is loaded; contained within the <HEAD> tags. |
| <ul> | Creates a bulleted list. |
| <li> | Identifies an item in an ordered or unordered list |
| <hr> | Creates a horizontal rule or line |
| <p> | Creates 2 lines |
| <br> | Creates a line break |
| <img src> | Inserts an image on a page |
| <h6> | smallest heading style |
| <tr> | creates a table row |
| <td> | creates a table cell |
| </table> | closes code for a table |
| All tags start and end with these symbols | < > (angle brackets> |
| symbol used to close a tag | / (slash) |
| navigation | hyperlinks or buttons that when clicked take you to somewhere else within a site |
| <h1> | largest heading style |