2015-04-20 179 views
0

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

回答

4

你有无效的链接,你可以试试

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

非常感谢! –

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

大声笑,简单的错误对不对? –

+1

非常感谢 –