首页 > 代码库 > html学习

html学习

a  标签有三种用法

            第一种  就是  作为  跳转用   

        

<body>
<a href="http://www.mamicode.com/a.php"> hello </a>
</body>

 

             第二种  就是  作为  锚点用   

<a id="dian"> hello </a>
<p>hellohellohellohellohello</p>
<p>hellohellohellohellohello</p>
<p>hellohellohellohellohello</p><p>hellohellohellohellohello</p>
<p>hellohellohellohellohello</p>
<p>hellohellohellohellohello</p><p>hellohellohellohellohello</p>
<p>hellohellohellohellohello</p>
<a href="http://www.mamicode.com/#dian"> dian </a>

          第三种  就是  作为  简单文件下载

<a href="http://www.mamicode.com/a.zip"> dian </a>

 

           

 

html学习