Htmlpedia
Advertisement


<a>
Usage Creates a hyperlink
Supported On Chrome, Edge, IE, Firefox, Safari, Opera
See Also http://www.w3schools.com/tags/tag_a.asp

<a> is an HTML element and means Anchor. This tag is used to create a hyperlink that lets you go from one page to a another. The most important attribute of this tag is href, that tells HTML what the link's destination is.
This tag will work on all browsers.

Attributes[]

charset, coords, download, href, hreflang, media, name, rel, rev, shape, target, type

Example[]

Code:[]

<a href="http://www.wikia.com">Visit Wikia.com!</a>

Result:[]

Visit Wikia.com!

Browser Support[]






   Chrome          Internet Explorer             Firefox             Safari            Opera

Yes Yes Yes Yes Yes

Advertisement