Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the "a" in the html <a> tag stand for?

As most of you know, the <a> tag is (mostly) used in html to make a hyperlink like

<a href="page.html">Click me</a>

But I've always wondered what the "a" in the <a> tag actually stands for.

like image 282
Kevin Avatar asked Sep 11 '16 09:09

Kevin


3 Answers

a stands for anchor. As easy as that!

like image 118
Matías Fidemraizer Avatar answered Oct 17 '22 05:10

Matías Fidemraizer


According to HTML Documentation part 4.5.1 the <a> tag refers to a HTMLAnchorElement

like image 9
Daniel Avatar answered Oct 17 '22 05:10

Daniel


Stands for anchor tag. The tag defines a hyperlink, which is used to link from one page to another.

The most important attribute of the element is the href attribute, which indicates the link's destination.

like image 3
Ujjwal Bassi Avatar answered Oct 17 '22 03:10

Ujjwal Bassi