No Follow
To stop the search engines from indexing a page one can add the no follow attribute between the head and body tags. Some times web masters may want to create a page that add value to their visitors but won't necessarily meet the search engine criteria or you certainly want to reserve the right of just keeping that page within your web site.
For instance you may want to provide a link explaining the necessary steps to take in order to correctly download a given page in your site, or you have an "about me" page that you'd rather want to have it skipped from the indexed pages.
Here is the actual Html code you can use to achieve this objective.
<HEAD>
<TITLE> Title of your page.</TITLE>
<META NAME="ROBOTS" CONTENT="NOINDEX,NOFOLLOW">
<Title>The headline title of your page.</TITLE>
</HEAD>
|
Just copy and paste this code immediately after the tag
and edit the bold text to meet your needs
Close the no follow page and return to Html JavaScript examples

|