导航栏不能正常工作

时间:2015-04-20 19:54:34

标签: html navbar

我正在使用HTML制作导航栏。我将所有文件放在一起,但它不起作用。

你知道它为什么不起作用吗?



<!——Navigation Bar Starts here!—->
<hr>
  <center>
<h3 style="word-spacing:50px">
 <a href src="ContactInformation.html">Contact_Information</a>
 <a href src="ProductInformation.html">Product_Information</a>
 <a href src="Index.html">Index</a>
</h3>
  </center>
<hr>

<!——Navigation Bar Ends here!—->
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:4)

您的链接无效,请尝试

<a href="ProductInformation.html">Product_Information</a>

答案 1 :(得分:1)

试试吧!

<hr>
  <center>
<h3 style="word-spacing:50px">
 <a href="ContactInformation.html">Contact_Information</a>
 <a href="ProductInformation.html">Product_Information</a>
 <a href="Index.html">Index</a>
</h3>
  </center>
<hr>
相关问题