|
Employers:
You may use HTML tags in the body of the job description. This
is optional and the jobs will be added to our database whether
you use HTML tags or not.
A
list of simple HTML Tags are listed below:
Line
Break <br> this tag is
useful when seperating content with a single space
Paragraph <p>TEXT</p>
the paragraph tag allows you to seperate content by paragraphs.
The tag must have an opening tag <p> and a closing tag </p>
with the paragrah content in between.
Hyperlink <a href="yourlink.com"
target="_blank">LINK TEXT</a>
this will allow to to create a hyperlink to another Web site or
Web page of your choice. The page will automatically load into
a new browser window. Make sure you copy the opening and closing
tags.
Bold <b>YOUR TEXT</b>
the bold tag wil display text in bold
Bulleted
List bulleted list help you organize your content - see code
example below
<ul><li>BULLET 1</li><li>BULLET
2</li><li>BULLET 3</li><li>BULLET
4</li></ul>
- BULLET
1
- BULLET
2
- BULLET
3
- BULLET
4
Fonts
- Choose Color you may change the color of a particular word
or group of words using a simple font tag. See chart below for
simple colors:
Red:
<font color="#999900">TEXT
DISPLAYED IN RED</font>
Blue: <font
color="#000066">TEXT DISPLAYED IN BLUE</font>
Green: <font
color="#006600">TEXT DISPLAYED
IN GREEN</font>
Yellow: <font
color="#FFCC00">TEXT
DISPLAYED IN YELLOW</font>
Grey: <font
color="#666666">TEXT
DISPLAYED IN GREY</font> |