.
    auctionSuite.com
Home         Hosting         Tutorials         Contact & Support         Tools & Toys
How do I add an image to my auction or web page?  

Adding an Image: Condensed Version

If you already have your images online and just need to know how to add them into your listing, then read on. If you don't yet understand how to upload your pictures you may want to look at Adding an Image: Starting From Scratch instead.

Assuming you have your images uploaded, the rest is easy. All you need to do is place the URL (the picture's address on the Internet) into a simple HTML image source tag and then add it to your page in the appropriate spot, like so:

<img src="http://URL_of_the_image.jpg">

That's all there is to it. The quotation marks are optional, I prefer to use them but you don't have to. Just make sure that you use 'img src' and not 'img scr' when you write out the code. If you want to place more than one image in your listing, just repeat the code substituting each picture's unique URL in the code. You'll probably also want to seperate the images from each other by placing a paragraph break (<p>) between them.

<p>
<img src="http://URL_of_the_image1.jpg">
<p>
<img src="http://URL_of_the_image2.jpg">
<p>
<img src="http://URL_of_the_image3.jpg">
<p>

If you like, feel free to use this code generator below to put together your image link. Just enter your Picture's URL into the space provided, click the 'Create Code' button and your HTML will appear in the text box at the bottom. All you need to do then is highlight it, copy it and paste it wherever it needs to go.

Simple enough?

Your URL:
Your code will display in the box below.

Back To Top