Linking Codes
(Remember: code is not case-sensitive
but file names are)

Basic link to document
in same directory
<A HREF="filename.htm">filename.htm</A>
Basic link to file
on another server
<A HREF="http://www.library.upenn.edu/friends/index.html">
Friends of the University of Pennsylvania Library</A>
Relative filenames <A HREF="../filename.htm">for a file one level above where you are
<A HREF="../../filename.htm">for a file two levels up
<A HREF="directory/filename.htm">for a file in a subdirectory
<A HREF="../directory/filename.htm">for a file in a directory on your same level, linked to your parent directory
Linking to a
target
Define the target: <A NAME="foo">text in your document</A>

To link from the same file: <A HREF="#foo">linking text</A>
To link from another file: <A HREF="filename.htm#foo">linking text</A>

Linking a
thumbnail to
a larger image
<A HREF="bigpix.jpg"><IMG SRC="thumbnail.jpg"width="60" height="60"></A>
Linking to a
document from an icon
<A HREF="filename.htm"><IMG SRC="icon.jpg" width="50" height="50"></A>
TIP: if you don't want the link border around your icon, use
<IMG SRC="icon.jpg" border=0>