如果没有超链接,Web 就没有多大意义了。
<a href="https://jirengu.com">饥人谷</a>
<a href="https://jirengu.com" title="可能是未来中国最火的前端工程师的聚集地">饥人谷</a>
将 target
设置成 _blank
时,点击链接浏览器会新开一个 Tab 打开该网页。
<a href="https://jirengu.com" title="可能是未来中国最火的前端工程师的聚集地" target="_blank">饥人谷</a>
<a href="#">返回页面顶部</a>
用于定位到文档的某一部分,<a>
的 href
要对应文档内某个元素的 id
(id
的值在文档内要唯一)。
<a href="#email链接">Email链接</a> <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element#Forms">表单相关标签</a>
<a href="#email链接">
Email链接</a>
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element#Forms">
表单相关标签</a>
<a href="https://jirengu.com" title="可能是未来中国最火的前端工程师的聚集地"> <img src="https://avatars0.githubusercontent.com/u/28950695?v=3&s=200" height="100"> </a>
<a href="https://angular.io/resources/images/logos/angular/angular.svg" download>下载 Angular Logo</a>
<a href="tel:+8613701234567">+86 13701234567</a>
<a href="mailto:xidada@china.gov.cn">发封邮件给习大大</a> <br> <a href="mailto:xidada@china.gov.cn?cc=pengliyuan@china.gov.cn">发封邮件给习大大并抄送第一夫人</a>
<a href="mailto:xidada@china.gov.cn">
发封邮件给习大大</a>
<br>
<a href="mailto:xidada@china.gov.cn?cc=pengliyuan@china.gov.cn">
发封邮件给习大大并抄送第一夫人</a>
同一站点尽量使用相对路径。
假设文件结构如下:
- index.html - images/ logo.png background.png - styles/ app.css
<!-- index.html --> <img src="images/logo.png">
/* app.css */ .container { background: url('../images/background.png'); }
https://angular.io/resources/images/logos/angular/angular.svg