我正在使用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;
答案 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>