Home |  Contact Us |  Our Blog | 
Customer Service


Topic: How to Add Links to a Page

If you are using the "Web Page Editor" simply press the "Add Link" button and fill in the form.
The "Add Link Button" is circled below



To add a link using HTML (Home Page Welcome Message for example) do the following:

Adding a text link to a web page is pretty easy.
There are two elements to the text link.

1) The URL you want to link to, ie: 'http://www.ProAgentWebsites.com'
2) The Text you want the link to display, ie: 'Click here for a Good Time'

Now you just need to know the syntax for the HTML Address tag.

To create this link:  Click here for a Good Time
You use this syntax:  <a href="http://www.ProAgentWebsites.com">Click here for a Good Time</a>


Creating a link for email is just as simple, the syntax is a little different. Instead of the URL you enter the email address prefixed with 'mailto:'. Here's an example.

To create this link:  dg@ProAgentWebsites.com
You use this syntax:  <a href="mailto:dg@ProAgentWebsites.com">dg@ProAgentWebsites.com</a>


You can also create an Image link by uploading an image and replacing the text with an Image Tag.
Here's an example.

To create this link:  
You use this syntax:  <a href="http://www.ProAgentWebsites.com"><img src="/images/btn_next.gif"></a>

Any image you upload can be linked to by entering '/images/THE FILE NAME' within the Image Tag.