导航栏不工作 html

Navigation bar not working html

我正在使用 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!—->

你的链接无效,试试

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

试试吧!

<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>