[toc]

📖a链接

  1. 超链接

🏷href属性

hyper reference(引用)表示跳转的地址

  1. 跳转地址```html 百度 百度 百度 弹出你好 打开邮箱 打电话 ```
  1. 跳转某个锚点

    1. 使用id属性定义锚点<h1 id="chapter">title 1</h1>
    2. 使用超链接进行访问<a href="#chapter">chapter</a>
    3. 跳转到其他页面的锚链接<a href="./index.html#chapter">chapter</a>
  2. 回到顶部

    1. <a href="#top">回到顶部</a>
    2. <a href="#">回到顶部</a>

为什么使用id? 全局属性,元素在文档中的唯一编号

🏷targrt

  1. _self:在当前页面窗口中打开,默认值
  2. _blank:在新窗口打开