answersLogoWhite

0


Best Answer

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

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

To create an anchor tag, a tag that creates links in webpages you use the < a href=''> and < / a > tags conjunctively.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What tag do you use to create a link?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 &lt;a&gt; tag in &lt;head&gt;.


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 &lt;ol&gt; for "ordered list".


Which command is used to create HTML link?

The name of the tag used to create a link in an HTML document is the anchor tag. The anchor tag takes the hrefattribute normally, and a pair of tags is used to surround the text or image you want the link to be activated by.Great HTML Help!In this case, the text "Great HTML Help!" would be displayed to the user, and that text would be clickable. Clicking on that text would cause your browser to direct itself to http://answers.com.

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: &lt;a href="page.html" title="My Page"&gt;Clickable Link&lt;/a&gt;.


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 &lt;link src="abc.css"&gt;&lt;/link&gt;


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 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.


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 &lt;/a&gt; right? That would be the &lt;a href&gt; code. It's simple. &lt;a href="LINK OF SITE"&gt;whatever you want the link to say&lt;/a&gt; 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 &lt;a&gt; tag in &lt;head&gt;.


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

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


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.


How do webpages use graphics?

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


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

It's called &lt;ol&gt; for "ordered list".


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

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