answersLogoWhite

0

The anchor tag is the one used to create a hyperlink in HTML. The base of the tag is the letter "a" and it requires are least one attribute--href--which tells the browser the address to which the link points.

The href attribute be a full URL with the protocol, or it can be relative to the current document. To link to a page called "landing.html" our anchor tag might look something like this.

Click Here!

The text contained after the initial tag and before the closing () will be the "clickable" text, and the browser will render it that way (normally blue, and underlined, by default.)

You can also place an image tag inside the anchor, and that will turn the image into a link.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is an anchor in a webpage?

The HTML anchor tag is a tag that looks like this: It's most often used to produce links using the href attribute, eghttp://wiki.answers.com">Example.com!The text inside the tag (or an image if you'd like) is what becomes "clickable." By default, underlined and blue in most browsers.


How do you create a link to the top of the current web page?

A link to the top of current web page can be easily created. It can be done using <a> tag in <head>.


What html tag are used to create hyperlink?

The anchor tag is the proper tag (actually, the only tag) to use to create a hyperlink. The tag looks like this.The link textYou can also include images in the link, and a few other HTML elements. The href parameter mean "hypertext reference" and has to contain the address of the file you want to link to. You can link to any file, although URLs for HTML files are the most commonly used.The anchor tag can also be used to create "jump links" within a given page. To do that, you'd assign the anchor tag an ID, and then use another anchor tag to point at #ID. For instance:Then elsewhere in the same document:Jump to the TargetYou can also jump to that specifc part of a page from another page by appending the #ID bit to the end of the URL.


To create a numbered list in HTML which tag would you begin with?

It's called <ol> for "ordered list".


Tag enables Web designers to link HTML documents to each other?

Anchor tag is the tag talked about in here. This tag helps documents to link with each other.

Related Questions

What is the attribute that is used to create a clickable link on the page?

The method is called a hyperlink. You create the link with an anchor tag. Here is an example: <a href="page.html" title="My Page">Clickable Link</a>.


How do you create link css to indexpage?

CSS can be made into a external page and linked to HTML. It can be done by the link tag like <link src="abc.css"></link>


Why use HTML tags?

Tags are the basic rules in HTML like if you wanted to add a dotted list you can use the ul tag and you can add images with the img tag and you can make the image a link by nesting the img inside a link tag but i believe the most useful tag is the div tag


how to add a link on answers?

To add a link on an answer, you can use the HTML anchor tag.


What tag is denoted by a and is used to create hyperlinks?

I think I understand what you are saying. The tag that is closed by </a> right? That would be the <a href> code. It's simple. <a href="LINK OF SITE">whatever you want the link to say</a> I hope this helped...


How do you create a link to the top of the current web page?

A link to the top of current web page can be easily created. It can be done using <a> tag in <head>.


What is an anchor in a webpage?

The HTML anchor tag is a tag that looks like this: It's most often used to produce links using the href attribute, eghttp://wiki.answers.com">Example.com!The text inside the tag (or an image if you'd like) is what becomes "clickable." By default, underlined and blue in most browsers.


How do webpages use graphics?

You should use HTML tag "img" for that. look at the related link


How to create a link with hover text on it on Tumblr?

Use the HTML title attribute with your <a> tag to display hover text. Here is an example: <a href="page.html" title="Hover Text">Page</a>.


C why would you want to use the link tag instead of the style tag to define a style sheet?

<link href="css/style.css" rel="stylesheet" type="text/css" /> The link tag refers to an external stylesheet while the style tag is used if your CSS is inside the HTML document under the <head>.


What html tag are used to create hyperlink?

The anchor tag is the proper tag (actually, the only tag) to use to create a hyperlink. The tag looks like this.The link textYou can also include images in the link, and a few other HTML elements. The href parameter mean "hypertext reference" and has to contain the address of the file you want to link to. You can link to any file, although URLs for HTML files are the most commonly used.The anchor tag can also be used to create "jump links" within a given page. To do that, you'd assign the anchor tag an ID, and then use another anchor tag to point at #ID. For instance:Then elsewhere in the same document:Jump to the TargetYou can also jump to that specifc part of a page from another page by appending the #ID bit to the end of the URL.


Can a text be a link?

Yes, any text located in a document written in HTML, XHTML, or other related content markup language can be a link. To make a link in HTML or XHTML, you use the a tag, which is known as an anchor tag. This tag can cause this link to link to an internal page to the site, to an external site, or to a bookmark location on the same page.