HTML第八课:超链接标签
a超链接 :文本链接 、图像链接
<a href="https://www.baidu.com/">百度</a>
<a href="https://www.baidu.com/"><img src="img/baidulogo.png" alt="" width="150"></a>
href="" 链接跳转的地址
注意:如果是一个网址,一定要带上协议头 https:// 或 http://
href="" 这个属性里面,如果不写值,叫“空链接”
href="#" 这个属性里面,写#,叫“空链接”
href="/" 这个属性里面,写/,叫“访问根目录”
href="javascript:;" 这个属性里面,写javascript:;,叫“禁止跳转”
title="" 提示性文本 (有利于网站的内部优化)
target="_blank" 链接跳转的地址 以“新的窗口”打开
a超链接的4个状态样式:
a:link 超链接的默认样式 。
a:visited 访问过的(已经看过的)链接样式 。
a:hover 鼠标处于鼠标悬停状态的链接样式 。
a:active 当鼠标左键按下时,被激活(就是鼠标按下去那一瞬间)的链接样式。
<style type="text/css"> a{ color:#0099cc; text-decoration:none; } a:visited{ color:green; text-decoration:none; } a:hover{ color:#003399; text-decoration:underline; } a:active{ color:pink; } </style>
<a href="">百度</a> <a href="">网易</a>
