Reputation: 31
enter image description here
I am trying to link between the various files to be able to jump back and forth for navigation. I am trying to go from index.html to ConversionsPage.html which i can do. However from ConversionsPage.html I can not get to any of the other pages within that same folder or back to index.html
<a href="Pages/ConversionsPage.html" >Assignment Number 1 </br> is what i
used to get to the conversions page. From the conversions page i am trying
to go to ConvertFahrenheitToCelsius.html and then from there have a return
to the main conversions page.
<a href="Pages/ConversionsPage.html" >Return to Conversions Page</br>
I keep getting an error that it is not found or deleted. """""""
Upvotes: 0
Views: 35
Reputation: 1220
The problem is that your hrefs don't properly account for the folder structure. You just need to remove the directory from the hrefs between files in Pages.
For example, in ConversionsPage.html
<a href="ConvertGallonsToLiters.html">Gallons to Liters</a>
Upvotes: 1