| A | B |
| <html>...</html> | Begins and ends the web page. |
| <head>...</head> | setup part of webpage |
| <title>...</title> | show a title on the top of your browser. |
| <body>...</body> | the visible part of webpage |
| <p>...</p> | places a blank line before & after block of text |
| <br> | goes to the next line |
| <img src=...> | displays an image from the identified location. |
| <h1>...</h1> | create a level 1 heading. |
| <u>...</u> | underline text |
| <strong>...</strong> | make text bold |
| <em>...</em> | italicize the text |
| <ul>...</ul> | create a bulleted list (Unordered) |
| <ol>...</ol> | create a numbered list (Ordered) |
| <li>...</li> | create a bullet or number item in list |
| <!DOCtype html> | first HTML statement for any webpage |
| .css | file extension for a stylesheet document |
| .html | file extension for a webpage |
| .jpg | most common file extension for a photo |