HTML Tips: To HTML or Not to HTML?
We're in the process of converting to a new HTML Editor. If you are already using our new HTML Editor, you can watch a Webinar here. If you have not yet converted to our new editor, we've provided some HTML Tips for you below. For questions about this conversion call 1-866-512-7918.
HTML Reference Table
| Item | Steps | Example |
| <b></b> Bold |
|
I have over <b> ten </b> years of experience in the industry. |
| <i></i> Italicize |
|
I have over <i> ten </i> years of experience in the industry. |
| <u></u> Underline |
|
I have over <u> ten </u> years of experience in the industry. |
| <font face> </font> Changing the font |
|
<font face="Arial">I have over ten years of experience in the industry</font>. |
| <font size> </font> Increase or decrease font size |
|
<font size="2"> I have over ten years of experience in the industry</font>. |
| <font color> </font> Change font color |
|
<font color="red" size ="3"> I have over ten years of experience in the industry</font>. |
| <center></center> Center |
|
<center> I have over ten years of experience in the industry</center>. |
| <br> Adding a line break |
|
I look forward to working with you to find your dream home. <br> Sincerely, <br> Sybil Carrade |
| <p> To begin a new paragraph |
|
I have over ten years of experience in the industry. <P> If you would like to visit my website, the URL is www.homegain.com |
| <ol></ol> To create numbered lists |
|
I provide the following services: <ol> <li>Newspaper ads <li>Direct Marketing <li>Internet promotion </ol> |
| <ul></ul> To create bulleted lists |
|
I provide the following services: <ul> <li>Newspaper ads <li>Direct marketing <li>Internet promotion </ul> |
| <a href =""> </a> To create links |
|
<a href="http://www.homegain.com"> Click here</a> to visit my website. The words "Click here" will be linkable to http://www.homegain.com: Click here to visit my website. |