I think dirty nailed it, but if you're talking about the links such as what the official site has where you just mouse over a link, and a list of more links appear below, yes, the easiest or most common way to do that is through javascripts.
I'm mostly self taught in the realm of web building and design, so my knowledge hasn't truly grown beyond HTML, because most of the other languages are basically what college students study in computer science, so I have little time or desire to pick up on those. So I can't help much on writing javascripts although there are many tutorials. A site like
this one I've used in the past to help as well, they provide free scripts similar to the ones that AF.com uses.
As for simple weblinks, it involves wrapping what ever you want linked in the following HTML tag:
Code:
<a></a>
So a link linking to Michael Vick's FalcFans player page would look like this:
Code:
<a href="http://www.falcfans.com/players/michael_vick.html">Michael Vick</a>
which is the rough equivalent of this:
Michael VickIf you need to learn HTML code there's a billion tutorials online. I mean HTML tutorials are probably only second to porn sites in terms of their frequency on the internet. I was able to pick up all the basics in a weekend, and proceeded from there to continue to accumulate knowledge. A site that I still frequent today is
HTML Goodies to pick up new things. But there is a lot of software out there now like dirty said called WYSIWYG editors that really take out the need to know HTML code. Microsoft Office provides these tools, since you can now create Word and Excel documents to appear on the web (this site's salary cap pages are made via MS Excel), not to mention Office's distinct web program: FrontPage. At this point, knowing HTML code is only required when you have to troubleshoot rather than build.