链接到另一个站点

这是 <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 站点的链接