Let’s say I have a normal folder with the ‘index’ file. Then in that folder I got a folder named example ‘Band’. And in Band I got a html document. How do I make a link back to the index in the previous folder?
Use "../" (without quotes) to send browsers up one directory. Use as many times with folder names to get the right relative path. Basically…
<p><a href="../index.html" title="Home Page">Home</a></p>
Ron