HTML Anchor

The HTML anchor tag defines a hyperlink that links one page to another page. It can create hyperlink to other web page as well as files, location, or any URL. The "href" attribute is the most important attribute of the HTML a tag. and which links to destination page or URL.

href attribute of HTML anchor tag

The href attribute is used to define the address of the file to be linked. In other words, it points out the destination page.

The syntax of HTML anchor tag is given below.

Let's see an example of HTML anchor tag.

Test it Now

Specify a location for Link using target attribute

If we want to open that link to another page then we can use target attribute of tag. With the help of this link will be open in next page.

Example:

Test it Now

Output:

HTML Anchor

Note:

  • The target attribute can only use with href attribute in anchor tag.
  • If we will not use target attribute then link will open in same page.

Appearance of HTML anchor tag

An unvisited link is displayed underlined and blue.

A visited link displayed underlined and purple.

An active link is underlined and red.


Supporting Browsers

Element chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari
Yes Yes Yes Yes Yes
Next TopicHTML abbr Tag




Contact US

Email:[email protected]

HTML a Tag
10/30