This browser does not support basic Web standards, preventing the display of our site's intended design. May we suggest that you upgrade your browser?
Before you begin the task of creating your web pages, you need to understand how naming and organizing these files affects the way they interconnect or link to one another, via the URL. This document gives some recommendations for naming and organizing your files and discusses how Absolute and Relative URLs are used so that your linked files will always work.

A URL (Universal Resource Locator) is the address or location of a file, whether it be an HTML page, a graphic image or some other Web file. There are three parts to the address. In the example
"http://www.uwec.edu/tour/tour.html":http:// is the Internet Tool Type
www.uwec.edu/ is the Host Name
Tour/tour.html is the Path and Filename
This is the method of using all three parts of the URL to establish the location of the linked file. Absolute URLs are used when giving out your site's location or for connecting to documents outside your directory structure.
This is the method of using only the path (directory names, if any) and filename of the URL to establish the location of a file. Relative URLs are used for files within your directory structure. The importance of relative URLs is that by using them, you can create links between files that will work no matter if they are on your computer or on the web server.
Let's pull it all together with an example of a directory structure and some sample files.
Assume you have the following files and directories on your computer:
C:\History\index.htm
C:\History\dept.htm
C:\History\Courses\outline.htm
C:\History\Graphics\image.gif
Drawn graphically, they would look like this:

"dept.htm"
"Courses/outline.htm"
"Graphics/image.gif"
"../index.htm"
Notice a couple of things about URLs. When used in HTML code, the URL is enclosed in quotation marks. The forward slash (/) is used to separate the directory name(s) from the filename.
For more information on how URLs are used within HTML codes, check out Linking to Internet Resources in the Web Publishing Series, a collection of HTML Editing Guides.