Adding Images

To add an image to your page add this code:

<img src="image url">

Replace "image url" with the url of your image.

Add Links

To add a link use the code below and replace "url" with the url you want to refer to, and "title" with what you want to appear in the page:

<a href="url" target="_new"> title </a>

The part of the code target="_new" makes the link open in a new page. If you don't want this to happen just delete it!

Image + Link without border

Here's what you have to use in order to have an image (without border) that refers to another page. Replace "image url" with the url of your image, "url" with the url of your link.

<a href="url" target="_new"><img src="image url" border=0></a>

Other tutorials