What does the "a" in the html 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.

3

3 Answers

a stands for anchor. As easy as that!

3

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

0

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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like