Latest web development tutorials

HTML area href attribute

Tag Reference HTML area HTML <area> tag

Examples

With clickable image map area:

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support the href attribute.


Definition and Usage

Target area connected href attribute specifies.

If no href attribute, <area> tag is not a link.


Differences between HTML 4.01 and HTML5

In HTML5, <area> tag href attribute is no longer used, use placeholder to specify links.


grammar

<area href="URL">

Property Value

描述
URL

链接的 URL。可能的值:

  • 绝对 URL - 指向另一个站点(比如 href="http://www.example.com/sun.htm")
  • 相对 URL - 指向站点内的某个文件(href="sun.htm")
  • 锚 URL - 指向页面中的锚(href="#sun")


Tag Reference HTML area HTML <area> tag