answersLogoWhite

0


Best Answer

If you are wanting to specify a link to another page:

href="http://www.linkexample.com">Link Text

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What HTML attribute identifies a link target?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can you open a link in a new browser window in html?

You can do this using the "target" attribute of the anchor tag. It looks like this:Your linked textThe target attribute is valid in HTML 4 and 5, but was deprecated in XHTML 1.0, so it's not valid in the "Strict" doctype (use transitional instead.)


How can you open a link in a new browser window with HTML?

You can open the link into a new window by using the attribute, target="..." here is a basic link example This is the HTMl for a Link The href attribute defines the link "address". By adding the target attribute it defines where the linked document will be opened. for example" This is the HTMl for a Link to open in a new window The value "_blank" is used for the Target to open in a new window.


How can you open a link in a new browser using HTML?

You can't easily open a link in a new browser window (anymore), but you can open the link in a new browser tab. To do this, you have to add the target attribute to your HTML anchor tags. The value for that attribute (in this case) should be "_new"A great place to ask a question!Other values include "_top" and "_parent." You can read about them at the attached link.This is your only option that is within HTML. To get any closer to the "New Window" link, you're going to have to use another technology like JavaScript.


How do you add a pop-up window to a link in Adobe Dreamweaver?

In the code view for the HTML file, you need to add the following to the href attribute of the selected link:[target="_blank"] (minus brackets)For example:click here to open link in pop-up window


What does h ref code do used in HTML?

the HREF attribute of an A tag is the location you want a link to point to.


What is the term for a picture or graphic that contains a link?

In HTML speaking it is called mapped image, you have image mapped that have link. The HTML tag for this is : <map name="..."></map> and to apply it on a image you add the attribute usemap="#mapName"


How do you create a link for HTML?

To create a link to another resource (a page, an external script or css file, an image, etc) inside of HTML, you use the HTML anchor tag.The tag looks like this:Text to LinkTechnically, the above code is correct (but doesn't do anything.) Normally, you would also want to include the hrefattribute. The href (or hypertext reference) attribute contains the address of the resource to which you want the link to point.Great HTML Help!You might also be interested in the title, and target attributes. See the related link for all of the anchor tag attributes.


How does one insert a link using HTML?

In HTML the tag designates that a hyperlink is being provided. The href attribute of this tag is how the url is coded into the link text. A standard template for this sort of code would appear as follows: Link text where url is the web address to which you want to link.


How do you make a link on a website?

Using HTML Open a text editor. Make sure that the content is on your website. Create your link text. Surround the link text with tags. Add the "href" attribute. Enter a website's address. Post your link


What is an anchor tag?

An anchor tag is a HTML element that creates a link to a target URL. When correctly implemented, the link can wrap around text, images, or as buttons, so that users can interact with it and visit the link's destination.


Which HTML tag designates links to other Web pages?

To add a link you can type: <a href="example.com" target="_blank">Link</a>


How do you change a web address link to a one word link?

some ways to do ityou can use the "link" function in word, or if you know HTML you use href=the target website.