USING HTML
Make your listing stand out with a little code.
When listing your item for sale, you can include some html to help sell
it. Below is a list of HTML & code snippets showing how it can be
used in the description of your listing.
PAYMENT LINKS
Payment buttons, PayPal account links
You can put a link to your PayPal accounts in your ads.
- The url must have the "www"
- The url must have the '/' after the .com
- The PayPal logo can be included between the <a> & </a>
tags, e.g. <a href="http://www.paypal.com/> <img
src="http://www.paypal.com/en_US/i/logo/logo3.gif">
</a>
Instructions for PayPal:
We're putting in support for automatic PayPal shopping carts, but if you
want to do your own paypal link, you can follow the instructions here.
With the paypal link you can include the information for the buyer to
purchase the item immediately. In the paypal code example below, the URL
contains
https://www.paypal.com/cart/add=1&business=email%40domain.com
&item_name=the+item&amount=$40&shipping=$6
Everything after the https://www.paypal.com/cart/ are parameters needed
by paypal to complete the transaction. We describe how to use the parameters
below.
- basic url = https://www.paypal.com/cart/
- business: business=email%40domain.com
where your paypal email account is "email@domain.com". The
@ symbol is replaced by "%40"
- item_name: item_name=the+item
where "the+item" represents the string "the item".
The + symbols is used in place of spaces. This string is just an identifier
so you know what was bought.
- amount: amount=$40,
this is the price you are selling the item for.
- shipping: shipping=$6,
this is the shipping cost that will be added onto the amount
- &: each parameter above needs to be separated
by the character '&' as done in the example
| Pay Button |
code example |
how it looks |
| PayPal |
<b>Click here to buy this item<b><br>
<a href="https://www.paypal.com/cart/add=1
&business=email%40domain.com &item_name=the+item
&amount=$40" target="paypal">
<img border="0" src="http://www.paypal.com/en_US/i/logo/logo3.gif">
</a>
|
Click here to buy this item

(sample link. not an actual business account) |
GENERAL HTML
Paragraph, Line break, Horizontal rule (line)
| tag |
code example |
how it looks |
| <p> </p> |
<p> paragraph 1 </p>
<p> paragraph 2 </p> |
paragraph 1
paragraph 2 |
| <br> |
line 1 <br> line 2 |
line 1
line 2 |
| <hr> |
top line <hr> below line |
top line
below line |
Header
| tag |
code example |
how it looks |
| <h1></h1> |
<h1> header style 1 </h1> |
header style 1 |
| <h2></h2> |
<h2> header style 1 </h2> |
header style 1 |
| <h3></h3> |
<h3> header style 1 </h3> |
header style 1 |
| <h4></h4> |
<h4> header style 1 </h4> |
header style 1 |
| <h5></h5> |
<h5> header style 1 </h5> |
header style 1 |
| <h6></h6> |
<h6> header style 1 </h6> |
header style 1 |
Bold, Italic, Big, Small, Center
| tag |
code example |
how it looks |
| <b></b> |
<b> bold text </b> |
bold text |
| <i></i> |
<i> italicized text </i> |
italicized text |
| <big></big> |
<big> font size +1 </big> |
font size +1 |
| <small></small> |
<small> font size -1 </small> |
font size -1 |
| <center></center> |
<center> centered text </center> |
centered text |
Color text
colors available include aqua, black,
blue, fuchsia, gray,
green, lime, maroon,
navy, olive, purple,
red, silver, teal,
yellow or white.
| tag |
code example |
how it looks |
| <font color=color></font> |
<font color=blue> BLUE text </font> |
BLUE text |
| |
<font color=green> GREEN text </font> |
GREEN text |
| |
<font color=red> RED text </font> |
RED text |
| |
<font color=lime> LIME text </font> |
LIME text |
| |
<font color=navy> NAVY text </font> |
NAVY text |
| |
<font color=purple> PURPLE text
</font> |
PURPLE text |
| |
<font color=silver> SILVER text
</font> |
SILVER text |
Bullet list
| tag |
code example |
how it looks |
| <ul></ul> |
item description:
<ul>
<li>blue</li>
<li>excellent condition</li>
</ul>
|
item description: |
Number list
| tag |
code example |
how it looks |
| <ol></ol> |
item description:
<ol>
<li>blue</li>
<li>excellent condition</li>
</ol>
|
item description:- blue
- excellent condition
|
Images
Add your images to the description using img tags.
| tag |
code example |
how it looks |
| <img> |
<img src="http://www.yoursite.com/yourpicture.jpg"> |
The image will show up where you placed
the img tag in your description. |
* Other notes
Table tags are allowed in your html, including <table>, <tr>,
& <td>. Javascript is not allowed.
<a href..> are allowed. If you would like put a
link to your own website, you can also put your URL in your webstore description
under update "My blujay" information.
|