Click to See Complete Forum and Search --> : Linking to higher directories


shensyel
03-20-2003, 05:31 AM
Hi All,

Is there a tag to link up one level without using the whole "http:\\www....etc" url?

I hope it's clear what I'm trying to do...say I have an html page in www.hensyel.com/pics and I want to link to the main index.html...

If index.html is in the /pics folder then my href is easy: href="index.html" but if it's in the root directory I have to use href="http://www.hensyel.com/index.html".

Is there an easier (read: shorter, less typing ;) ) way to link up one level?

Thanks for any input,

Steve

pyro
03-20-2003, 07:14 AM
Yup: <a href="../index.htm">

shensyel
03-20-2003, 07:29 AM
SWEET! Thank you Pyro, you Rock!