Link:
<a href="url">Link text</a>
Image:
<img src="url" alt="some_text"/>
Doc:
< p > Paragraph
< br > new line
< body > Self explanatory < /body >
<hr /> makes a horizontal line
<br /> makes a line break
<small> makes small text </small>
Table:
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
Ordered List:
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
Un-ordered List:
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
More Complicated:
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
Most or all of this was copied from w3schools.com
<font color="COLOR NAME or HEX CODE">TEXT HERE</font>
Find hex (hexadecimal) codes here
<font size="INSERT NUMBER HERE">TEXT HERE</font>
<a target="new" href="WEB URL HERE">LINK NAME</a>
Pictures
<img src="INSERT URL" />
<a href="INSERT WEBPAGE URL"><img src="INSERT IMAGE URL" /></a>
<img src="IMAGE URL" height="PIXEL NUMBER" width="PIXEL NUMBER" />
For example, the most commonly used is 640 width, 480 height.