Let me explain..
This is a simple classic hrml link:
Code:
<a href="http://www.twistyshotbabes.net">Twistys hot babes</a>
and it shows like
Twistys hot babes
Now, on this link you can use some attributes. For example relationship attrib.
Relationship attrib in HTML language have been shortened to
rel.
The rel attribute specifies the relationship between the current document and the linked document.
Rel attrib have its own syntax. Is like <a rel="value">.
Our topic is Follow and noFollow so we will use this rel tag.
Lets get on the beginning with my code:
Code:
<a href="http://www.twistyshotbabes.net">Twistys hot babes</a>
and it shows like
Twistys hot babes
This LINK is on default basis
Follow and it will be followed by SE spiders.
If you want not to be followed, then add rel="nofollow", so it will be:
Code:
<a href="http://www.twistyshotbabes.net" rel="nofollow">Twistys hot babes</a>
The list of acceptable values for rel attribute:- alternate
- stylesheet
- start
- next
- prev
- contents
- index
- glossary
- copyright
- chapter
- section
- subsection
- appendix
- help
- bookmark
- nofollow
- license
- tag
- friend
And at the end, attribute DoFollow

doesn't exist, reconcile with that.
Greetings
