test june 11
A page for testing how to do things

How to insert an image. Select image icon (tree) and then choose an image from this website by browsing, set alignment and size (right and 200 x 200) for the breakfast picture. After insertion, you can move the image about or select it and go back to the image icon to replace it.
Insert image from Flickr. Select internet icon (globe) and then select 'embed external object' tab. In another browser window choose Flickr photo and from the 'actions' menu at the top, go for the one on the right and 'Grab the HTML/BB code), and copy it.
Go back to the other window and paste in the HTML. If you want the image to be clickable, leave the HTML as it is.
<a href="http://www.flickr.com/photos/camdencyclists/5743115650/" title="Priory Road bridge by camdencyclists, on Flickr"><img src="http://farm4.static.flickr.com/3058/5743115650_5d4b59ceac_m.jpg" width="240" height="180" alt="Priory Road bridge"></a>
If not, delete the a href statement, leaving just the img src statement.
<img src="http://farm4.static.flickr.com/3058/5743115650_5d4b59ceac_m.jpg" width="240" height="180" alt="Priory Road bridge">
To align the image, you can add align="left" (or "right" to the img src statement)
<img src="http://farm4.static.flickr.com/3058/5743115650_5d4b59ceac_m.jpg" width="240" height="180" alt="Priory Road bridge" align="left"></a>
The photo on the left is aligned left and is not clickable. The one on the right is aligned right and is clickable.
How to insert a table and apply a style

