HTML超链接用`<a>`标签来创建,最核心的属性是`href`,用来指定链接跳转的地址。基础语法:```html<ahref="https://www.baidu.com">百度一下</a>```🔗常用代码示例1.文本链接:点击文字跳转```html<ahref="https://www.example.com">访问示例网站</a>```2.新窗口打开:加`target="_blank"````html<ahref="https://www.example.com"target="_blank">