Kevin
Kevin

Reputation: 745

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.

Upvotes: 32

Views: 42560

Answers (3)

Daniel
Daniel

Reputation: 11182

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

Upvotes: 11

Ujjwal Bassi
Ujjwal Bassi

Reputation: 61

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.

Upvotes: 4

Mat&#237;as Fidemraizer
Mat&#237;as Fidemraizer

Reputation: 64943

a stands for anchor. As easy as that!

Upvotes: 40

Related Questions