Let's create a new document using Notepad to illustrate the different types of references. You should be running Notepad with a new or blank document. Enter the following text:

Let's create a new document using Notepad to illustrate the different types of references. You should be running Notepad with a new or blank document. Enter the following text:
<HTML>
<HEAD>
<TITLE>HTML Guide - Paul's Second Document</TITLE>
</HEAD>
<H2>Paul's Second Document</H2>
This is my second HTML document. This will illustrate how to use
links, which is a powerful feature of HTML.<P>
<HR>
I've already created <A HREF="first.html">my first document.</A>
If you select that link, you can look at it.<P>
Here is a link to <A HREF="http://www.dickinson.edu">the Dickinson
College home page.</A> Take a look at it.<P>
<HR>
</HTML>
When you view the file in Netscape, click on the highlighted words my first document. That should take you to the file first.html, which is the first document you worked on. This is an example of a relative reference. Because first.html is in the same location as second.html, you only need to provide the file name for the hypertext reference.
If you click on the second highlight, the Dickinson College home page, you will go to their home page located on a World Wide Web server. This is an absolute reference, providing the complete location.
Relative references are very useful when you are creating a series of documents which will be stored together. This HTML guide, for example, uses relative references to link the different parts. It is easier to type a short relative reference:
than a complete absolute one:
The chance of error when typing is reduced as well. In addition, if you ever move the documents to a different location, you won't have to change all the relative references.
Absolute references must be used when you are creating links to locations other than your own. For example, if you were listing some of your favorite Web sites, you would provide an absolute reference for each one.