| Term | Definition |
| <html> | Tag that marks the start of an html document. |
| <head> | Tag that defines the header area of an html document. |
| <body> | Tag set that marks the start of a Web page's displayable content. |
| <p> | Tag that indicates the start of a paragraph. |
| <b> | Tag used to display text in boldface. |
| <i> | Tag used to display text in italics. |
| <u> | Tag used to underline text. |
| <h1> | Tag used to specify heading level in 24 points. |
| <h2> | Tag used to specify heading level in 18 points. |
| <h3> | Tag used to specify heading level in 14 points. |
| <h4> | Tag used to specify heading level in 12 points. |
| <h5> | Tag used to specify heading level in 10 points. |
| <h6> | Tag used to specify heading level in 8 points. |
| <br /> | Empty tag that inserts a line break. |
| <hr /> | Empty tag that inserts a horizontal line. |
| <blockquote> | Tag that offsets a paragraph by indenting the paragraphs left and right margins. |
| <a href> | Tag that marks an anchor followed by the attribute that used to create a link. |
| <font color="FFFFFF"> | Tag that lets you specify the text's characteristics followed by an attribute that assigns white to be the font color. |
| <h2 align="center"> | Tag that specifies a heading level 2 followed by an attribute that assigns a horizontal alignment for the heading. |
| <body bgcolor="teal"> | Body tag that specifies the background color to be set to teal. |
| <img src="peter.jpg"> | Empty tag that displays an image that is named peter.jpg. |