HTML and XHTML quick-reference guide
| To add | Use |
| strongly emphasized text (usually appears as boldface) | <strong>Text goes here</strong> |
| emphasized text (usually appears as italic text) | <em>Text goes here</em> |
| top-level heading | <h1>Heading goes here</h1> |
| second-level heading | <h2>Heading goes here</h2> |
| third-level heading | <h3>Heading goes here</h3> |
| paragraph break | <p>Paragraph goes here</p> |
| line break (HTML) | Text goes here<br> |
| line break (XHTML) | Text goes here<br /> |
| indented text | <blockquote>Text goes here</blockquote> |
| linked text | <a href="URL goes here">Text goes here</a> |
| image with alt text (HTML) | <img src="Location of image file goes here" width="Number of pixels wide" height="Number of pixels high" alt="Alt text goes here"> |
| image with alt text (XHTML) | <img src="Location of image file goes here" width="Number of pixels wide" height="Number of pixels high" alt="Alt text goes here" /> |
| bulleted list | <ul> <li>First list item goes here</li> <li>Second list item goes here</li> <li>Third list item goes here</li> </ul> |
| numbered list | <ol> <li>First list item goes here</li> <li>Second list item goes here</li> <li>Third list item goes here</li> </ol> |

