freeCodeCamp/guide/chinese/html/attributes/href-attribute/index.md

641 B
Raw Blame History

title localeTitle
Href Attribute Href属性

Href属性

Href是“超文本引用”的缩写是HTML属性。 href属性主要用于<a>标签以指定链接所指向的网页的URL无论是在同一页面的不同部分还是在完全不同的网页上

如何使用

<a href="URL"></a>

例子


<a href="https://www.freecodecamp.org">This is an absolute URL</a> 
 
 <a href="index.html">This is a relative URL</a> 

更多信息:

W3Schools的

HTMLElementReference