How to “Hyperlink” A Line Of Text
One of the things you need to know to do internet marketing is how to make a line of text so when it is displayed it can be clicked on and the person will go to a specified website, or URL, be it your main blog, a specific blog archive page, or a sales page through an affiliate link, or a sales page to a product you are selling yourself.
Here’s how to do it:
–You will use HTML code.
THE CODE LOOKS LIKE THIS:
<a href=”http://www.YOUR-DOMAIN.com”>YOUR TEXT</a>
You will type your domain in the YOUR-DOMAIN.com area and you will type something in the “YOUR TEXT” area.
The “YOUR TEXT” area is what will appear for the person to click on. Then it will take them to the URL that you have typed in the www.YOUR-DOMAIN.com section.
This will, however, take them to the other webpage and leave your webpage.
Now if you want to take them to the other webpage or website and open it in a separate window here’s how to do that. This is beneficial so that they can see the other page and the original page will still be open so that when they close the page, the original page will still appear.
OPENS INTO A NEW SEPARATE WINDOW:
<a target=”_blank” href=”http://www.YOUR-DOMAIN.com/”>YOUR TEXT</a></p>
target=”_blank” is what makes it open in a new window
Here are other examples:
<a href=”AFFILIATE-LINK”>YOUR TEXT HERE</a>
<a href=”http://www.your-domain.com/your-directory”>YOUR TEXT HERE</a>
NOW YOU CAN LINK TO ANY URL!!