2015-04-20 62 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

非常感謝 –