- [a href=http://www (dot) anywebsite (dot) com/anywebpage.html]Any Web Page[/a]
Another problem this could create is with Search Engine Optimization (SEO). If some of the key words in your web page's title tag are used in the URLs or anchor text of all those hyperlinks, then a large number could throw off your keyword density for the page. If it exceeds 10%, you could get red flagged by the search engines for “keyword stuffing”.
A viable solution for that
I use a HTML list box to organize hyperlinks into a neat and compact format. This is the technique I use to organize my monthly technical tip publications in my "fix my computer" web page (Note: the left arrow and right arrow symbols have been replaced by the “[“ and “]” symbols, respectively, to preserve formatting for viewing purposes):
- [p]
- Please select a [em]"TEKTIP"[/em] web page to view:[br]
- [select size="10" onchange="document.location.href='http://www.analyzohiosoftware.com/tektip' + this.value;"]
- [option value="_122011.html"]December 2011[/option]
- [option value="-012012.html"]January 2012[/option]
- [option value="-022012.html”]February 2012[/option]
- [option value="-032012.html"]March 2012[/option]
- [option value="-042012.html"]April 2012[option]
- [option value="-052012.html"]May 2012[/option]
- [option value="-062012.html"]June 2012[/option]
- [option value="-072012.html"]July 2012[/option]
- [option value="-082012.html"]August 2012[/option]
- [option value="-092012.html"]September 2012[/option]
- [option value="-102012.html"]October 2012[/option]
- [option value="-112012.html"]November 2012[/option]
- [/select]
- [/p]
- “document.location.href='http://www.analyzohiosoftware.com/tektip' + this.value;"
The web page that is redirected to must be constructed on the fly. The “http://www.analyzohiosoftware.com/tektip“ string is concatenated to the contents of “this.value”, that represents the list box selection that is clicked by the site visitor. As an example, if the user clicks the “February 2012” selection from the list box, then the concatenated result will be: “http://www.analyzohiosoftware.com/tektip-022012.html“. The corresponding value component of “February 2012” is added to the end of the string “http://www.analyzohiosoftware.com/tektip“. Then the site visitor is redirected to “http://www.analyzohiosoftware.com/tektip-022012.html“.
Using a HTML list box to organize your hyperlinks looks nicer to your website visitors and it really does help to make a more positive first impression.

Join the conversation! Your thoughts help the community grow.