Test Yourself:
Relative URL's within this directory structure:
In the diagram below, the boxes represent subdirectory folders, with
folder names in blue font. File names within those folders are printed in magenta
font.

Multiple choice questions to test your knowledge of relative addressing:
- Within the directory structure illustrated by the diagram above, what
would be the appropriate relative link to reference the file cheeta.gif from
within the document first.htm?.
- <a href="cheeta.gif">Cat Link from first.htm</a>
- <a href="Images/cheeta.gif">Cat Link from first.htm</a>
- <a href="../cheeta.gif">Cat Link from first.htm</a>
- <a href="../Images/cheeta.gif">Cat Link from first.htm</a>
- None of these
- Within the directory structure illustrated by diagram above, what would be the
appropriate relative link to reference the file cheeta.gif from
within the document catPage.htm?
- <a href="cheeta.gif">Cat Link from catPage.htm</a>
- <a href="Images/cheeta.gif">Cat Link from catPage.htm</a>
- <a href="../cheeta.gif">Cat Link from catPage.htm</a>
- <a href="/HW/Images/cheeta.gif">Cat Link from
catPage.htm</a>
- None of these
- Within the directory structure illustrated by diagram above, what would be the
appropriate relative link to reference the file Panda.gif from
within the document first.htm?
- <a href="Panda.gif">Panda Link from first.htm</a>
- <a href="../Panda.gif">Panda Link from first.htm</a>
- <a href="Images/Panda.gif">Panda Link from first.htm</a>
- <a href="../Images/Panda.gif">Panda Link from first.htm</a>
- None of these
- Within the directory structure illustrated by the diagram above, what would be the
appropriate relative link to reference the file Panda.gif from
within the document catPage.htm?
- <a href="HW/Images/Panda.gif">Panda Link from catPage.htm</a>
- <a href="HW/Panda.gif">Panda Link from catPage.htm</a>
- <a href="Images/Panda.gif">Panda Link from catPage.htm</a>
- <a href="Images/HW/Panda.gif">Panda Link from catPage.htm</a>
- None of these

|