How would you configure a hyperlink from the index.html file to another file named services.html which is located in a subfolder named categories?
1)<a href="services.html">Services</a> 2)<a href="categories/services.html">Services</a> 3)<a href="../categories/services.html">Services</a>
If you directory structure is:
index.html categories->services.html
Then I'd do it using your option number 2: 2)<a href="categories/services.html">Services</a>
*your (I can't edit my post for some reason :/ )
but services.html is located in a subfolder !!!
If the folder named 'categories' is on the same level as index.html then what I wrote is definitely right. Trust me.
Might help:
Absolute vs. Relative Paths/Links
Absolute and Relative Paths