通过href相互链接本地文件

时间:2018-09-11 20:28:33

标签: html css

在此处输入图片描述enter image description here enter image description here 我正在尝试在各个文件之间链接,以便能够来回跳转以进行导航。我正在尝试从index.html转到我可以做的ConversionsPage.html。但是,我无法从ConversionsPage.html转到同一文件夹中的其他任何页面,也无法返回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>

我不断收到找不到或删除它的错误。 “”“”“”

1 个答案:

答案 0 :(得分:1)

问题是您的href不能正确说明文件夹结构。您只需要从Pages中文件之间的hrefs中删除目录。

例如,在ConversionsPage.html

<a href="ConvertGallonsToLiters.html">Gallons to Liters</a>