answersLogoWhite

0

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

15y ago

What else can I help you with?

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


Usig HTML how do you make a link under a button?

Button is automatically used to hyperlink so there is no need to href. You can easily place onclick option on the button.