| A | B |
| <html> | starting an html document |
| Doctype or DTD | telling the browser "what language" you are using |
| <body> | starts the visible part of the webpage |
| <title> | the title in the blue bar of the browser |
| <head> | contains information about the web page |
| <p> | starts a paragraph |
| <strong> | makes text bold |
| <em> | makes text italicized |
| <br /> | inserts a line break |
| <img /> | inserts an image |
| <a> | inserts a link |
| <h1> | title sized heading |
| <h6> | teeny tiny sub-heading |
| <table> | starts a table |
| <tr> | starts a table row |
| <td> | starts a table data cell |
| href | indicates where a link links to |
| src | indicates where to get the image file |
| alt | describes what the image is of |
| width | gives the horizontal dimensions of an image |
| height | gives the vertical dimensions of an image |
| .doc | created in microsoft word |
| .txt | default document created in notepad |
| .html | file created in notepad that works in a web browser |
| .jpg | a type of image file (also .gif and .bmp) |
| tag | marks up content of an html file (look for angle brackets) |
| element | tags plus content |
| attribute | further describes a tag |
| nesting | one tag encased in another |