URL's and pointing to other files
A URL is a Uniform Resource Locator.
The URL http://www.ilr.cornell.edu/basics.html gives the instruction:
Using the http protocol (WWW), go to the server "www.ilr.cornell.edu" and retrieve the file "basics.html".
Likewise, http://www.englib.cornell.edu/mhh4/cv.html means:
Using the http protocol (WWW), go to the server "www.englib.cornell.edu", enter the "mhh4" directory/folder, and retrieve the file "cv.html" in that directory.)
Or http://www.englib.cornell.edu/mhh4/ means
Using the http protocol (WWW), go to the server "www.englib.cornell.edu", enter the "mhh4" directory/folder, and retrieve the default file for that directory. This file has a name like "default.html" or index.html".
To make a link to another document (external link), you create a (hypertext reference) anchor. For example, to point to CUinfo, you use:
<A HREF="http://www.cornell.edu/">CUinfo</A>
To make links within a document (internal links), as we have done here with the index at the top of the page, first "name" the text you would like to jump to:
<H3><A NAME="extern">External and Internal links</A></H3>
Then make a link to it at the place you want to jump from:
<LI><A HREF="#extern">External and Internal links</A>
If two documents are in the same directory or folder, it is not necessary to give the entire path name when you point from one to the other:
<A HREF="academic.html">Classes Taken</A>
Images
Images in web pages also have URL's. You add an image to a page by using the tag <IMG SRC=url>. For example:
<IMG SRC="gwlogo.gif">, when gwlogo.gif is stored in the same directory or folder.
