HTML » Inserting images
If you want to use one of your own pictures that you have stored on you computer, you have to upload it to a website first, then hot link it from there. If you insert the picture chosen from e.g. "My Documents" on your own computer instead of from a web site, you will be the only one who can see it... (Be happy that no one else has access to your own computer) You can store the picture at www.freewebs.com or at www.photobucket.com. If you don't have an account, you can create one for free. They are completely safe, and easy to use. When you have created the account, upload the picture. Then insert the code below
<img src="PIC_ADDRESS">
on your horseland page, where you want the picture to show. Let's say I've stored a picture on my photobucket account, the address would be:
<img src="http://www.photobucket.com/emblas/image.jpg">
If you want a black border around the picture use this code: border="1". The picture code will look like this then:
<img border="1" src="PIC_ADDRESS">If you don't set the border size, it will be 0 pixels (invisible) by default on pictures, and 2 pixels (blue border) on pictures that are links. To remove the blue border around a picture that works as a link, set border="0". The border will turn blue if the picture is a link (se tutorial how to make links).