href
:用于指定跳转到目标页面的地址target
:用于指定以什么方式打开页面_self
:当前窗口打开,默认值_blank
:新窗口打开 <a href="http://www.baidu.com">百度一下</a>
<a href="https://www.baidu.com" target="_blank">百度两下</a>
<a href="./8.img tag.html">内部链接</a>
<a href="/3.semantic tagging.html">语义化标签</a>
<a href="#">无指定页面,跳转到当前页面,可以实现“回到顶部”功能</a>
<a href="javascript:;">毫无反应链接</a>
<a href="/images/image.png">下载链接</a>
<a href="http://www.baidu.com"><img src="./images/image.png" alt="" title="点我进来看看"></a>
<h1 id="hehe">定位1</h1>
<a href="#hehe">去呵呵</a>
tips:复制来的一大段文字如果想要保留原格式的话,可以用<pre></pre>
包裹