html中的链接

使用a标签实现链接,分别给href设置不同的属性:

1.内部链接:链接到本网站的其他网页,例如:<a href = "index.html" />,其中设index.html为本网站的首页

2.外部链接:链接到其他网站的网页,例如在本网站中链接到百度首页:<a href="http://www.baidu.com" target="_blank" />

3.锚点链接:链接到当前网页的某个位置,如回到顶部类似的设计。需要和id属性一起使用,例如设置某个元素的id为first,则要跳转至该元素的位置,应将a标签这样设置:

<a href ="#first"  />(注意要使用#)

原文地址:https://www.cnblogs.com/NIFS/p/12552891.html