别小看这两个短小的标签,它们在HTML中的超链接指向,起到非常重要的作用:
<html> <body> <p><a href="/index.html">此文本</a> 指向本站中的一个页面的链接。</p> <p><a href="http://blog.sina.com.cn/yefeng9393">此文本</a> 指向夜风新浪博客页面的链接。</p> </body> </html>
<html> <body> <a href="http://blog.sina.com.cn/yefeng9393" target="_blank">Visit 夜风新浪博客!</a> <p>若把链接target属性设置为"_blank",则此链接在新窗口中打开!</p> </body> </html>
<html> <body> <p> <a href="http://blog.sina.com.cn/yefeng9393" title="夜风新浪博客"> <img src="http://portrait8.sinaimg.cn/2420127911/blog/180" /> </a> </p> </body> </html>
——在上面最后一个例子中,用到了title属性,来定义鼠标经过图片时显示的文字!这非常有用!
以上就是HTML标签天天练4--超链接的详细内容,更多关于HTML标签天天练4--超链接的资料请关注九品源码其它相关文章!