HTML Tips For Advertisers

The Job Description field supports basic formatting using HTML, the language of the World Wide Web.

HTML is used to structure information – denoting certain text as headings, paragraphs, lists and so on – using HTML elements. Each HTML element consists of a start 'tag', some content and an end tag, like this: <tag> your text here </tag>.

The following HTML elements can be used to structure your job ad:

Paragraphs

A paragraph starts with <p> and ends with </p>.

Line break

To start a new line in the current paragraph, add <br> before the new line.

Bold text

To create bold text, put your text between <strong> and </strong> tags.

Italic text

To create italic text, put your text between <em> and </em> tags.

Main heading

Use <h2> and </h2> to create a main heading.

Sub heading

Use <h3> and </h3> to create a sub heading.

Numbered list

A numbered list starts with <ol> and ends with </ol>. Each item in the list goes within <li>...</li> tags.

Bulleted list

A bulleted list starts with <ul> and ends with </ul>. Each item in the list goes within <li>...</li> tags.