标签:html
<!DOCTYPE html><html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<!--内部样式-->
<style>
a{text-decoration:none;}
a:hover{text-decoration:underline;}
</style>
<!--下划线一开始没有-->
<!--鼠标经过出现-->
</head>
<body>
<!--target属性是以什么方式打开超链接的页面,blank是用新的窗口打开-->
<a href="http://www.runoob.com" target="_blank">这是一个链接使用了 href 属性</a>
</body>
</html>
标签:html
原文地址:http://blog.51cto.com/13400327/2055056