HTML tips
You can use the HTML tags shown below to enhance the appearance of your adverts. Please note that these tags will only be accepted in the 'description' field and will not work elsewhere.
BOLD
To make text bold, surround the relevant word(s) in <strong> and </strong> tags as follows...
Code:
This is an <strong>example</strong> of bold
Output:
This is an example of bold
ITALICS
To make text italic, surround the relevant word(s) in <em> and </em> tags as follows...
Code:
This is an <em>example</em> of italics
Output:
This is an example of italics
LINE BREAK
To insert a single line break (carriage return) after text, use the <br /> tag.
Code:
The following text appears<br />on the next line
Output:
The following text appears on the next line
PARAGRAPH
To make a paragraph use the <p></p> tags.
Code:
<p>Here's one paragraph.</p> <p>And here's another.</p>
Output:
Here's one paragraph.
And here's another.
LISTS
A list is basically made up of <li></li> tags. These tags must be contained within either the <ul></ul> tags or the <ol></ol> tags.
The <ul></ul> tags will give you a list made up of simple bullet points and the <ol></ol> tags will give you a numbered list.
Code:
<ul>
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ul>
Output:
Code:
<ol>
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
Output:
apple
banana
orange