answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

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

Wiki User

9y ago

The hyperlink tag is called the anchor tag. Here is an example of HTML hyperlink code: <a href="page.html" title="My HyperLink">Hyperlink</a>.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

carera

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the name of the tag used to define a hyperlink in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How is the HTML document used for making a hyperlink?

Correct syntax for creating a hyperlink in HTML is &lt;a href="the_file_name_link.html"&gt;This is a link&lt;/a&gt;


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


HTML for space symbol?

The HTML code used to define a blank space is &amp;nbsp; ...


Which tag is used to define frames in HTML?

&lt;frame&gt;


What are the characters of HTML used for?

The tags of HTML are used to define how the page looks like. The presentation with the looks is what tags are used for.


What are HTML style tags?

HTML style tag is used to define CSS in HTML. It is used to style the page according to the user demans.


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.


What is used to define the structure and layout of a web document?

HTML


What are hmtl codes?

HTML codes are nothing but HTML tags. These tags are used to define how a web page will look.


What are the alignments for Ptag in HTML?

&lt;p&gt; tag is used to define paragraph in HTML. It could be aligned anywhere in the page.


Which iframe attribute is used to define the restrictions to the frame content in HTML 5.0?

sandbox


What is HTML and what is it used for?

HTML is Hyper Text Markup Language. It is a standardized system for tagging text files to achieve font, color, graphs and hyperlink effects on www pages. It uses Markups to describe web pages.