Skip to content. | Skip to navigation

Learn Proven Techniques For Using Free
Craigslist Ads To Increase Sales And
Boost Traffic To Websites & Blogs
Sections
Personal tools
You are here: Home News Topics How do I use HTML on Craigslist?
delicious StumbleUpon Toolbar stumble digg
or Send to a Friend
Testimonial
"Craigslist.org has become a significant source of traffic to our Web2.0 microsite... I found your 'Craigslist for Entrepreneurs' an easy read...the sweat-equity way to get started in viral marketing."
A. L.
Testimonial
"I just found your website and I love the ebook. Thanks for your hard work."
Sid K.
Testimonial
"I have been selling houses for years, but wasn't ever able to get a foothold with my own online sales... Your eBook 'Craigslist for Entrepreneurs' helped demystify how Craigslist works."
Lizzy B.
Testimonial
"The ZIP Code report helped me link which Craigslist.org website my sales were coming from... the maps have given us a visual feel where our markets are located."
Neil A.
Your Feedback
Your comments, suggestions, and testimonials are most welcome.

Thank You!
Contact Us
 

How do I use HTML on Craigslist?

It is easy to use HTML, the same code that is used to make webpages, to post additional pictures and hyperlinks on your Craigslist post. This article has some easy to follow examples you can try out in your next post.

How do I use HTML on Craigslist?

HTML is easy to learn

When you post to many of the categories on Craigslist you are provided with a built-in system for uploading up to four pictures or graphics images to the post. I explain exactly how this works in my "how-to" report. One of the issues with the built-in image system is that Craigslist automatically reduces the resolution from your original pictures down to a lower, standardized resolution. While these are usually fine for selling an old chair or similar item, if you are running an eBusiness or website promotion post you may want more control.

An easy way to add a picture is to use HTML code. First you must have an image file, something saved in a .jpg, .gif, or .png format, and this image must be stored somewhere on the web other than Craigslist.

If you have a website, you could upload your image to it and basically refer to it at that location. An example would be if I wanted to create a post that had my site logo as an image. I would use the following HTML code in my post:

<img src="http://www.amillionplaces.com/logo.jpg">

Note that I have supplied the exact path to my logo, and you can test this by pasting the http://www.amillionplaces.com/logo.jpg into your browser as a URL. Hit enter and my logo should appear like the following:



You can enhance the image a bit by adding some resizing code, such as:

<img src="http://www.amillionplaces.com/logo.jpg" width="200">
Which is telling the browser to display the same image but scaled down to 200 pixlels wide.
It will look like the following:




Another easy thing to do is to add some alternate text for blind users and also potential search engine use:

<img src="http://www.amillionplaces.com/logo.jpg" width="200" alt="Please visit amillionplaces.com">
It will look like the following:



Please visit amillionplaces.com

When you hover over this in some browsers, the alt text may appear.

The last bit will add a hyperlink to an external site, in this example below, it is to my site here. This could direct people to your website or eProduct pages.

<a href="http://www.amillionplaces.com">
<img src="http://www.amillionplaces.com/logo.jpg" width="200" alt="Please visit amillionplaces.com">
</a>


This should result in the following:


Please visit amillionplaces.com

I just tested the above code on my latest Craigslist posting to the tampabay.craigslist.org, under "creative services". Works fine. If you don't have a website, you could use a free picture sharing service to "host" your image file.
Document Actions