Html之a标签的使用

使用 <a> 标签的方式:

<a href="http://www.baidu.com">用戶协议s</a><br>
<a href="login.html">首頁</a>

如下:点击文字跳转

用戶协议
首頁

有的时候不要下划线,可以设置属性去掉

  <style type="text/css">
        a{
            text-decoration: none;
        }
    </style>

猜你喜欢

转载自zhangqie.iteye.com/blog/2364474