 |
Formatting text on your site
| 1. How To Bold One Individual Word Or Phrase: |
| |
The following commands are used to bold text: <b> and </b>
<b> begins the bold process and </b> ends the process.
|
|
Example #1: John will sell your home quickly!
|
is produced by: John will <b>sell</b> your home quickly!
|
Example #2: John Doe: Real Estate Agent with Coldwell Banker Gundaker.
|
| is produced by: <b>John Doe:</b> Real Estate Agent with Coldwell Banker. |
|
|
| 2. How To Italicize One Individual Word Or Phrase: |
| |
The following commands are used to bold text: <i> and </i>
<i> begins the italics process and </i> ends the process.
|
|
Example #1: John will sell your home quickly!
|
is produced by: John will <i>sell</i> your home quickly!
|
Example #2: John Doe: Real Estate Agent with Coldwell Banker Gundaker.
|
| is produced by: <i>John Doe:</i> Real Estate Agent with Coldwell Banker. |
|
|
| 3. Changing Text Size And Color: |
| |
The following commands are used to change text size: <font size=n> and </font>
<font size=n> begins the sizing process and </font> ends the process.
|
|
| *(n=any number you choose from 1 to 7) |
Example #1: John will sell your home quickly!
|
is produced by: John will <font size=5>sell</font> your home quickly!
|
Example #2: John Doe: Real Estate Agent with GMAC.
|
| is produced by: <font size=5>John Doe:</font> Real Estate Agent with GMAC. |
|
|
| |
The following commands are used to change text color: <font color=n> and </font>
<font color=n> begins the sizing process and </font> ends the process.
|
|
| *(n=any color you choose that is recognized by HTML) For a full list of usable colors click here. |
Example #1: John will sell your home quickly!
|
is produced by: John will <font color=orange>sell</font> your home quickly!
|
Example #2: John Doe: Real Estate Agent with GMAC.
|
| is produced by: <font color=orange>John Doe:</font> Real Estate Agent with GMAC. |
|
|
| 4. Changing Text Font: |
| |
The following commands are used to change text fonts: <font face="FONT"> and </font>
<font face="FONT"> begins the bold process and </font> ends the process.
|
|
*note - The person must have the font specified loaded on his computer for this to work, otherwise they'll see the default font. Therefore, it is recommended that you stick with fairly common fonts
Example #1: John will sell your home quickly!
|
is produced by: John will <font face="arial">sell</font> your home quickly!
|
Example #2: John Doe: Real Estate Agent with Coldwell Banker Gundaker.
|
| is produced by: <font face="arial">John Doe:</font> Real Estate Agent with Coldwell Banker. |
|
|
| 5. Combining Text Formatting: |
| |
Any formatting options can be combined to further alter the appearance of any text by embedding the commands, see example below:
|
|
*note - make sure you close the tags in the opposite order that you use them, <i><b>TEXT</b></i>
Example #1: John will sell your home quickly!
|
is produced by: John will <font size=5><i><b>sell</b></i></font> your home quickly!
|
Example #2: John Doe: Real Estate Agent.
|
| is produced by: <font size=6><font face="courier new">John Doe:</font></font> Real Estate Agent. |
|
|
|