How to Use HTML to Make eBay Sales

Close up of HTML Code on an eBay sale listing

Goldmund Lukic / Getty Images

Using HTML can help you get the most out of your eBay auction listings. No matter the format, you must be able to make your listings both readable and accessible. In almost all cases, this means being able to use at least a little bit of HyperText Markup Language (HTML). This is the type of computer code from which all websites (including eBay) are composed.

Identifying the Problem

Some eBay pages may have an auction listing that appears to be a rambling description. It is almost indecipherable due to its lack of formatting or punctuation. Consider this sample:

Great new Sigma 24mm lens Focal length: 24mm. Minimum aperture: f/22 Maximum aperture: f/1.8 Aperture blades: 9 Front cap: included Rear cap: included Compatibility: Canon EF Condition: Like New Buy this great lens using Buy It Now and I'll throw in an extra lens carrying bag and lens cleaning cloth. It's a great deal! Shipping Terms Shipped via UPS 3-day service to anywhere in the lower 48 states. Guarantee Guaranteed for 30 days, refunds or exchanges with advance notice only. Thanks for bidding!

Ugh, listings like the one above are horrible to read. The seller just needs to learn a few basic HTML techniques to help him present sale items more appealingly.

HTML Tags

HTML is a universal background—markup language—that tells a computer how to display a page. This display is controlled by elements called tags. Tags include:

  • Designates the head, titles, and body of a page
  • Paragraph and other breaks on the page
  • Bold, underline, italic, and other elements of the text

Each tag begins with an opening code surrounded by brackets. It then closes by using a slash surrounded by brackets. As an example, to underline text you would open the code using

  • and close the tag element using
  • Using basic HTML tags, you can make your auction listings infinitely more readable and avoid alienating would-be bidders.

    Line Break

    Inserting these four characters—a less-than symbol, the letters " br" and a greater-than symbol, no spaces between them—causes a line break, similar to a carriage return on a typewriter. Insert one of these in your listing text whenever you want to go to the next line.

    Insert two of them together when you want to skip a line.

    Bold your text here

    Any text that you surround by opening and closing bold tags ( and , respectively) will appear in boldface type. This is very useful for emphasizing text in your listings that you'd like to stand out.

    Italic your text here

    Any text that you surround by opening and closing italic tags ( and , respectively) will appear in italic style type. This, too, is useful for emphasizing aspects of your listing that should stand out to your reader.

    Font Size your text here

    Any text that you surround with opening and closing font tags that uses the size property will appear larger or smaller than regular text. Replace num with a number from -4 to 4 to indicate the size of the text you desire, with 0 being normal text. Negative numbers produce smaller text, while positive numbers produce larger text.

    Font Color your text here

    Any text that you surround with opening and closing font tags that use the color property will appear in a different color from regular text. Replace name with the name of a primary color that you'd like to use for the text. Among the valid choices are red, green, blue, yellow or brown.

    Lists your list item

    You may want to use lists to quickly display components of the item you are selling. The letters "li" indicate the list function. If you want several items included in your list you will need to close and reopen the tag with each consecutive item.

    You can use all of these tags anywhere in your auction listing, so long as you remember that every tag except
    must have both an opening and closing tag and that tags must not overlap.

    Example of Improved eBay Listing Layout

    Now, let's return to our jumbled listing shown earlier. To remedy the problem listing, our hypothetical seller has now changed the listing text they submitted to eBay to HTML tags. The text they entered into the listing form now looks very different. We've made the HTML tags bold to help you spot them (you don't need to bold the tags for them to take effect).

    Great new Sigma 24mm lens


    Focal length: 24mm

    Minimum aperture: f/1.8

    Aperture blades: 9

    Front cap: included

    Rear cap: included

    Compatibility: Canon EF

    Condition: Like New


    Buy this great lens using Buy It Now and I'll throw in an extra lens carrying bag and lens cleaning cloth. It's a great deal!


    Shipping Terms

    Shipped via UPS 3-day service to anywhere in the lower 48 states.

    Guarantee

    Guaranteed for 30 days, refunds or exchanges with advance notice only.


    Thanks for bidding!

    Though in its raw HTML format the text is a little confusing, you'll see that the result eBay displays to the buyer has now become much, much better and now looks like this: 

    Great new Sigma 24mm lens
    Focal length: 24mm
    Minimum aperture: f/1.8
    Aperture blades: 9
    Front cap: included
    Rear cap: included
    Compatibility: Canon EF
    Condition: Like New
    Buy this great lens using Buy It Now and I'll throw in an extra lens carrying bag and lens cleaning cloth. It's a great deal!
    Shipping Terms
    Shipped via UPS 3-day service to anywhere in the lower 48 states.
    Guarantee
    Guaranteed for 30 days, refunds or exchanges with advance notice only.
    Thanks for bidding!

    Want to Use HTML Elsewhere on eBay?

    Not really an option. In particular, you can't use HTML tags in your item titles or subtitles. Being able to use HTML in your listings gives a great deal of flexibility, however, and if you decide to get really fancy, you might try your hand at learning some of the myriad other tags in HTML.