2017-04-05 142 views
-1

我想知道如何讓我的按鈕鏈接到另一個頁面。以下是我的嘗試。但是,該按鈕不鏈接到「關於我」頁面。這些文件都在同一個文件夾中,因此我沒有拼寫相同的錯誤,因此,我編寫了錯誤的按鈕,這就是爲什麼它沒有鏈接到所需的頁面?如何使用引導鏈接按鈕到另一個頁面

<div class="container text-center"> 
      <a href="About Me.html" class="btn btn-info" role="button">Click here to find more about me</a> 
</div> 
+0

按鈕鏈接應該可以正常工作 – ZimSystem

回答

0

你應該在頁面的「關於我」的文件名稱放入href。

提示:儘量避免空格,它應該在URL字符串內編碼。

<div class="container text-center"> 
    <a href="about-me.html" class="btn btn-info" role="button">Click here to find more about me</a> 
</div> 
相關問題