tags:

views:

13

answers:

1

hi, what is meant by 'static text link'with reference to a web page.

+1  A: 

A static text link would be the type <A HREF="www.mysite.com/link"> with a relative or absolute URL which search engines can easily follow and spider.

This is as opposed to a link created in a javascript function which cannot be indexed by search engines.

<A HREF="javascript:myfunction()">Click Here</A> 
JoseK
thanks for this information
user