本文主要是介绍HTML 链接 (by shany shang),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、html5 链接语法:
<a href ="https://www.yiqixiedaima.coml" target=“_blank”> 访问格林可可网 </a>
效果:请访问格林可可网
如果你将target 设置为"_blank" (“_blank”) ,链接将在新窗口打开.
二、Html -id属性
<a id="tips"> 注释说明类文字 </a>
///创建一个新的链接
<a href ="#tips" 访问 注释说明类文字</a>
/从另一个页面这样访问
<a href ="https://www.yiqixiedaima.com/html/html-links.html#tips">
三、图片链接
<p>创建图片链接:
<a href="//www.runoob.com/html/html-tutorial.html">
<img border="10" src="smiley.gif" alt="HTML 教程" width="32" height="32">
</a>
</p>
<p>无边框的图片链接:
<a href="//www.runoob.com/html/html-tutorial.html">
<img border="0" src="smiley.gif" alt="HTML 教程" width="32" height="32">
</a>
</p>
三、邮箱链接
这是一个电子邮件链接:
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">
发送邮件</a>
</p>
这篇关于HTML 链接 (by shany shang)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!