How to create nofollow links
Step 1: Create a standard link
The first thing you need to do is create a link. It should look like this:
<a href=”http://www.google.com”>Google’s Home Page</a>
Step 2: Add nofollow to your link
Now, you need to add ‘rel=nofollow’ (known as an attribute), to the link. You can do this one of two ways; it doesn’t matter which you use, they both do the same thing.
Place the ‘rel’ attribute at the end of the URL you are linking to; before the anchor text; this is what it should look like:
<a href=”http://www.google.com” rel=”nofollow”>Google’s Home Page</a>
Note: If you do it this way, make sure you leave a space between the end quote marks of the URL and the word ‘rel’.