answersLogoWhite

0


Best Answer

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

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

Wiki User

11y ago

The tag used to define a hyperlink in HTML is the anchor tag, and the code for it looks like this:

http://www.answers.com" >Text that will link

The anchor tag is called the anchor tag because of its original use to create "jump links" to other portions of the same HTML document. To do that, you need to create an anchor where you want the browser to "jump" to using the name attribute (in HTML 4) or the id attribute (in XHTML and HTML 5) Here is an HTML 5 example anchor called "anchorinfo":

You can access this anchor by appending a hash mark to the end of the URL, followed by the id value. In our case, that would be http://www.example.com/index.html#anchorinfo

You can link to that anchor using that URL, or, if you're in the same document, you can link to it like so:

Text
The tag used to define a hyperlink in HTML is the "anchor" tag. It looks like this:

To use it, you have to add the href attribute, and then put something inside the tags to create a link.

http://www.answers.com">Text that links

You can also put an image between the opening and closing tags. Other attributes worth noting on the anchor tag include title and target.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

there are two way to create hyperlink

the first [URL=your web]hyperlink[/URL]

the second<a href="your web">hyperlink</a>

Different website use different HTML, you have to find out which is suit for it.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

User Avatar

Wiki User

14y ago

You would use <a href>: <a href="http://www.mylink.com">Text to Click On</a>

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

<a href="enter URL here">Clickable Text</a>

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

HTML uses the anchor tag (<a></a>) to create a hyperlink. Here is an example of an HTML hyperlink: <a href="page.html" title="My Page">Click Here</a>.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

a

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What html tag are used to create hyperlink?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

The &lt;a&gt; 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: &lt;a href="http://www.google.com" target="_blank"&gt;Google&lt;/a&gt; Opens a new browser tab/window with the URL "http://www.google.com". Ex: &lt;a href="#" onMouseover="document.form1.textbox.value='Hello'&gt;Change Value&lt;/a&gt; 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. &lt;a&gt; 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 &lt;a&gt; tag can be used to create a hyperlink to any section of any website. Example: &lt;a href="yourwebsitehere.com"&gt;Hyperlink&lt;/a&gt;


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 &lt;a&gt;.


Is Slash is used to create a closing tag?

Yes. &lt;FORM&gt; is the opening tag whereas &lt;/FORM&gt; is the closing tag. This &lt;/TAG&gt; to close tags is applicable for most tages. ex: &lt;HTML&gt; &lt;/HTML&gt; &lt;BODY&gt; &lt;/BODY&gt; 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.