Relative (if to a file at the same level): my-file.html
.
.
.
.
Advantages of Relative Links
shorter
more portable (can move a whole folder of files to a different place or different server
without having to redo all the links)
.
.
.
.
Doing relative links
If to another file in the same folder/directory, just specify the file name
<A HREF="other-file-name.html">my link</A>
If to a file in a sub-folder/directory, specify the folder/directory name, a slash, and the
file name
<A HREF="sub-folder-name/other-file-name.html">my link</A>
If to a file in the superordinate folder/directory, use the UNIX ".." convention
<A HREF="../other-file-name.html">my link</A>
.
.
.
.
"From Surfing to Serving..."
from relatively passive surfing (consumption of resources)