answersLogoWhite

0

The anchor tag is the proper tag (actually, the only tag) to use to create a hyperlink. The tag looks like this.

The link text

You 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 Target

You can also jump to that specifc part of a page from another page by appending the #ID bit to the end of the URL.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the name of the tag used to define a hyperlink in HTML?

The <a> tag can be used to create a hyperlink in HTML. Within the tag you can put many different attributes, such as href, onClick, onMouseover, and target. Ex: <a href="http://www.google.com" target="_blank">Google</a> Opens a new browser tab/window with the URL "http://www.google.com". Ex: <a href="#" onMouseover="document.form1.textbox.value='Hello'>Change Value</a> Creates a link that when moused over changes document.form1.textbox's value to 'Hello'.


The color of a hyperlink that has not been clicked can be specified by setting what attribute in the BODY HTML tag?

The color of a hyperlink that has not been clicked can be specified by setting the "BGCOLOR" attribute in the HTML tag.


Do you have to open a new HTML document to edit a hyperlink?

No, we can edit the hyperlink in the same document. <a> tag can be placed after or before any tag.


What does href tag do?

HREF tag is used to create hyperlink. It send the control over to another document.


How hyperlinks used in HTML?

if you want to insert a hyperlink you write some code before and after the words you want to act as a link like: this is a link


What does href do?

HREF tag is used to create hyperlink. It send the control over to another document.


What is the code used to link one website to another website?

The <a> tag can be used to create a hyperlink to any section of any website. Example: <a href="yourwebsitehere.com">Hyperlink</a>


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 make anchor tags work on a tumblr page?

Anchor tag is the one that sends hyperlink to other pages. The anchor tag in HTML can be defined as <a>.


Is Slash is used to create a closing tag?

Yes. <FORM> is the opening tag whereas </FORM> is the closing tag. This </TAG> to close tags is applicable for most tages. ex: <HTML> </HTML> <BODY> </BODY> etc...


What is the full form of BR in HTML?

The correct HTML form for BR is . BR is a tag to force a line break. It was introduced as a single tag, with no companion tag. The and tags work with older HTML, but for HTML 5, you need to have an ending tag for each tag. You can create your own ending tag by adding forward slash within the single tag: .


How do you get hypertext to work?

You can get hypertext to work via anchor tag. The tag will cause to create a hyperlink to work on other page.