Inserting images

Like said in the previous step, be it image or gif, it doesn't change a thing, the only important element is the URL!!! I hope you have a URL of where an image is hosted so that you can try it! Otherwise take the rabbit's URL, and if you don't know how right click and select view image!!! A new page will open with the URL...

Are you done??
Okay, let's get back to Notepad.

The tag used for inserting images and gifs is a lone tag : <img> However this tag doesn't work with only that... It is waiting for you to tell it where to go and get an image or a gif... It's with the following function that it's done : src="" And it's in between the "" that you must insert your URL... Warning!!! Without spaces please!

Now this it what it should look like: <img src="Your_URL_Link">

Save and refresh in your web browser and your image should appear!

Image size

For your image size, it's the same functions as a table : width="%" and height="%" The "width" will determine it's width with a percentage, and the "height" the height with a percentage, based upon the initial size.

If you type : <img src="Your_URL_Link" height="50%" width="70%">

You image will be at 50% of the height and 70% of the width of it's initial size

Note : Don't forget the spaces between each function!

All you need to do is the same thing with each image and you will be free to have as many pictures as you want on your Ebay Sales Page, and for free!!!

Background image

You can also place an image as your background on your page by adding this function script="background url(URL Link)" in your <div> tag. Just take notice that if your image is not big enough it will repeat itself until it fills all the empty space, which isn't that practical for a simple picture. If it's too big not all of it will appear. The best is to find a pattern that repeats itself in order to create a continuous background.