| How do I bold, italicize or underline text?
Custom HTML Formatting
help section
Custom formatting may only be used in Step 1 - Edit Company
Information
and only in the following areas (fields):
- Description
- Products
- Hours
- Head Office
Note: DO NOT use HTML codes in any other field it will not work.
If you wish to accent your web page by using:
- bold type
<b>Place your text here</b>
Example bolding:
<b>When you join the Marketplace you make an investment in your community!</b>
The affect will be:
When you join the Marketplace you make an investment in your community!
- italics
<i>Place your text here</i>
Example using Italics:
<i>When you join the Marketplace you make an investment in your community!</i>
The affect will be:
When you join the Marketplace you make an investment in your community!
- underline
Example Underling:
<u>Place your text here</u>
<u>When you join the Marketplace you make an investment in your community!</u>
The affect will be:
When you join the Marketplace you make an investment in your community!
The easiest way to use HTML is to copy these samples
<b>Place your text here</b>
<i>Place your text here</i>
<u>Place your text here</u>
then paste it into the field you wish that your accented text is to
appear in
and then either paste or type your text over these words - Place your text
here.
Be sure that code that you wish to accent is placed at the
<b>beginning of the text and at end</b> of the text that you
wish to accent.
Use a combination of the above codes to give a variation of accenting
your text.
Bold - Italics
<b><i>Place your text here</b></i>
affect: Place your text here
Bold - Underline
<b><u>Place your text here</b></u>
affect: Place your text here
Italics - Underline
<i><u>Place your text here</i></u>
affect: Place your text here
Bold - Italics - Underline
<b><i><u>Place your text here<b></i></u>
affect: Place your text here
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
Example:
<ul>
<li>promote private enterprise through a fair, competitive
& open market.</li>
<li>promote our members first.</li>
<li>support the democratic process.</li>
<li>be responsible to members through open and transparent
processes.</li>
<li>be conscious of community impact when making decisions
and policies.</li>
</ul>
affect:
- promote private enterprise through a fair, competitive & open
market.
- promote our members first.
- support the democratic process.
- be responsible to members through open and transparent processes.
- be conscious of community impact when making decisions and
policies.
Note: You may also use a combination of bold, italics &
underlining with bullets as well.
<ul>
<li><b>promote private enterprise through a fair, competitive & open market.</b></li>
<li><i>promote our members first.</i></li>
<li><u>support the democratic process.</u></li>
<li><b><i>be responsible to members through open and transparent processes.</b></i></li>
<li><b><i><u>be conscious of community impact when making decisions and policies.</b></i></u></li>
</ul>
affect:
- promote private enterprise through a fair, competitive &
open market.
- promote our members first.
- support the democratic process.
- be responsible to members through open and transparent
processes.
- be conscious of community impact when making decisions
and policies.
|