fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@@ -0,0 +1,26 @@
---
title: Href Attribute
localeTitle: Href属性
---
## Href属性
Href是“超文本引用”的缩写是HTML属性。 href属性主要用于`<a>`标签以指定链接所指向的网页的URL无论是在同一页面的不同部分还是在完全不同的网页上
#### 如何使用
`<a href="URL"></a>`
#### 例子
```html
<a href="https://www.freecodecamp.org">This is an absolute URL</a>
<a href="index.html">This is a relative URL</a>
```
#### 更多信息:
[W3Schools的](https://www.w3schools.com/tags/att_href.asp)
[HTMLElementReference](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a)