超链接

  1. 超链
    <a>标签即用来显示超链 

    完整元素是 

    <a href="跳转到的页面地址">超链显示文本</a>

    <
    a href="http://www.12306.com">12306</a>

效果:

12306

2.在新的页面打开超链
新增属性target
<a href="http://www.12306.com" target="_blank">http://www.12306.com</a>

效果 :

http://www.12306.com

注意:

3.超链上的提示文字 属性之title
<a href="http://www.12306.com" title="跳转到http://www.12306.com">www.12306.com</a>

4.使用图片作为超链
<a href="http://www.baidu.com">
<img src="//www.baidu.com/img/baidu_jgylogo3.gif"/>
</a>

原文地址:https://www.cnblogs.com/thiaoqueen/p/6851456.html