Hyper Links

In the beginning, it was the hyper link that distinguished the web from other methods of information display on the Internet. A hyper link or link for short is a tag that enables the browser to show a path to another web page or Internet resource. These links can be placed anywhere on the page, and can be any number of characters in length.

There are two pieces of information that go into a link. First, there are the words that appear on the web page. A person following the link will click on these words. I will call these words the "click-able words".

The second piece of information is the path to the target web page. This can be a file name, if the file is on the same server, in the same folder as the web page you are reading. It can also be a hypertext transfer protocol (http) link to a completely different web site.

The HTML code is initialized with an anchor, represented by the letter "a". This is followed by href, short for hypertext reference. This is followed by the click-able words. The ending of the anchor is indicated by </a>. You can shorten or lengthen the number of words in the link by moving the end of the anchor. The example below links to a file in the same folder as the page you are currently reading. In this case, you only need to indicate the file name after the href.


HTML Code Browser Display

<a href="tables.asp">The Table Page</a>

The Table Page

To link to a file on a separate server, use the entire URL including the http:// prefix.

HTML Code Browser Display

<a href="http://www.findlay.edu">Univ of Findlay</a>

Univ of Findlay

Another useful linking method is a mailto: link. The href is an email address. When a person clicks on the click-able words, the browser attempts to send a message to the email address in the href.

HTML Code Browser Display

<a href="mailto:trusty@findlay.edu">Email Me</a>

Email Me

When creating links, avoid "click here" pointers.

Go to The University of Findlay Web site. Click Here Poor Layout
Go to The University of Findlay Web site. Much Better

Don't over do it with links to everywhere. Too many links will distract the reader.

The University of Findlay is a flexible, forward-looking institution that is constantly seeking ways of better serving students and the community. In today's fast-paced world, Findlay is continually adapting programs and teaching methods to meet the needs of current students in preparing them for tomorrow's careers.



Jump To Top Fonts
Home HTML Rules Breaks Bold & Italic Tables Hyperlinks Fonts Images Extra Items