A good answer might be:

myHome.htmlHobbies/myHobbies.htmlPets/myPets.html
<html>
<head>
<title>My Home Page</title>
</head>
<body>
...

<p>
First you need to 
know about my
<a href="Pets/myPets.html"> 
Pets! </A> 
</p>

<p>
And you must 
marvel at my
<a href=
"Hobbies/myHobbies.html"> 
Hobbies! </A> 
</p>

</body>
</html>

<html>
<head>
<title>My Hobbies</title>
</head>
<body>

...

<p>
Click here to return to
<a href="../myHome.html"> 
my Home Page </A> 
</p>


</body>
</html>

<html>
<head>
<title>My Pets</title>
</head>
<body>

...

<p>
Click here to return to
<a href="../myHome.html"> 
my Home Page </A> 
</p>


</body>
</html>


Uniform Resource Locators

A URL (Uniform Resource Locator) is an address on the Web. It uniquely identifies each Web resource (web page, image, audio file, animation, ...). URLs follow the same format (are "uniform") for all computer hardware and software. When your browser needs a particular resource it sends its request over the Internet. Since all machines connected to the internet use the same URL format the request can be routed through many different machines until it reaches the one holding the desired resource.

Like a Post Office mail address, a URL does not say how to find a particular resource. The route from the requesting machine to the requested resource is determined when the request is made. This is done by the various specialized computers that handle Internet communications.

QUESTION 11:

Is the route from a requesting computer to a resource always the same?