Use the following 'commandos' (in red), for layout in your comments.
TIP: copy and past and fill inn



01)
how to make a link:
<a href="http://www.a.site.com">http://www.a.site.com</a>

02)
how to make a link with another description:
<a href="http://www.a.site.com">link with another description</a>

03)
how to make a link with another description (in a new window):
<a href="http://www.a.site.com" target="_blank">link with another description</a>

04)
how to make a clickable email address:
<a href="mailto:e-mail@address.com">e-mail@address.com</a>

05)
how to place a image:
<img src="http://url of image">

06)
how to place- and make a image clickable:
<a href="
http://www.a.site.com"><img src="http://url of image"></a>

07)
how to place- and make a image clickable (in a new window)::
<a href="
http://www.a.site.com" target="_blank"><img src="http://url of image"></a>

08)
<b>text in bold</b>
09)
<i>text in italic</i>