| A | B |
| <html></html> | Starts and ends an HTML document. |
| <head></head> | Contains information about the web page. |
| <title></title> | Creates the web title that is printed on the web page title bar. |
| <body></body> | Begins and ends the body of the document. |
| <br> | Break – Stops text (or other element) and begins a new line. |
| <p></p> | Paragraph - Adds a line of space before and after the information between the tags. |
| <h1> to </h6> | Headings – Specifies the size and boldness of headers, levels are 1(most important) to 6 (least important.) |
| align | Changes the alignment when used with a heading (left, right, center.) |
| <ol></ol> | Ordered list – Used for a list. Adds a number or letter in front of each list item (depending upon attributes assigned.) |
| <ul></ul> | Unordered list – Adds a bullet (or image) to the front of listed items. |
| <li></li> | List item – used for each item in a list. |
|   | Inserts a blank space, repeat for each space required |
| <b></b> | Bold – create bold text. |
| <i></i> | Italicize – creates italicized text. |
| <u></u> | Underline – underlines text. |
| <center></center> | Centers the element which is placed between the tags. |
| <bgcolor=”hex code”> | Background color – adds a background color when combined with a hexadecimal value for the color. |
| <img src=“xxxx.xxx”> | Image – adds an image when the file name (or path) is specified. |
| alt | Aligns an image with text or wraps text around an image (left, right, top, middle, bottom.) |
| border | Creates a border around an image. |
| height, width | Specifies a height and width for an image. Speeds loading of image |
| hspace, vspace | Creates a space around the image, distance is measured in pixel. |
| <font></font> | Changes the characteristics of the text when attributes are used. |
| color | Specifies the color of the text when the hexadecimal code is specified. |
| face | Specifies the font to be used. |
| size | Specifies the size of the font when a number size is specified. 1 (8pt) to 7 (36pt). |
| <hr> | Horizontal rule - Creates a horizontal line. |
| size | Changes the thickness of a horizontal rule. |
| width | Changes the width of a horizontal rule (specify % of page or distance in pixels.) |
| noshade | Removes the three-dimensional shadow effect from a horizontal rule. |
| <a href=“xxx”>text</a> | Creates a hyperlink to another page when the address is specified and provides a written link on the page as specified. |
| <table></table> | The ending table tag must be used or Netscape will not display the table. |
| <tr></tr> | Defines the limits of a row. |
| <td></td> | Defines a cell. Cell information or images are inserted between the tags. |