HTML question.......??

  • Thread starter Thread starter lost
  • Start date Start date
L

lost

Guest
I forgot how to go up and down a level with the folders when using HTML. Can anyone help me?

I want to do this.

Base folder/current folder <-- one I'm using right now.

I want to be in Base folder/another folder <--one I want to get to.

I know it's something like ../another folder when using links, but I can't remember the exact syntax.

Thanks.
 
<a href="../">Traverse To Parent Directory</a>
<a href="../../">Traverse To Parent's Parent Directory</a>
<a href="AnyFolder/index.htm">Traverse To Child Directory</a>
 
Back
Top