連結到另一個站點

這是 <a>一個 nchor 元素) 元素的基本用法 :

<a href="http://example.com/">Link to example.com</a>

它建立了一個超連結,指向由 href(超文字引用)屬性指定的 URL http://example.com/,其錨文字為“連結到 example.com”。它看起來像下面這樣:

連結到 example.com

要表示此連結指向外部網站,你可以使用 external 連結型別:

<a href="http://example.com/" rel="external">example site</a>

你可以連結到使用 HTTP 以外的協議的站點。例如,要連結到 FTP 站點,你可以這樣做,

<a href="ftp://example.com/">This could be a link to a FTP site</a>

在這種情況下,不同之處在於此錨標記正在請求使用者的瀏覽器使用檔案傳輸協議(FTP)而不是超文字傳輸​​協議(HTTP)連線到 example.com

這可能是 FTP 站點的連結