answersLogoWhite

0

Using the <a> tag, as you would for a normal link:

<a href="example.html">Example</a>

What you wanna do to make a email link, is to tell the browser to start the default email program on the visitors computer. An example of an email link could be:

<a href="mailto:example@mail.com">Email link</a>

This, however, will not start websites such as hotmail up, but will, as explained, start up your default email client, which are considered annoying by most people. To make contact easier, i would consider using a form instead. However, this above mentioned method of email linking is the correct and easy way to do it.

User Avatar

Wiki User

14y 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;


What is the email tag code needed within HTML?

If you are trying to make an e-mail link, you will enter this: &lt;a link="mailto:Your.Name@Whatever.com"&gt;E-Mail Me!&lt;/a&gt;


What does 'creating a link' mean?

Creating a link means writing formatted text (usually HTML markup) that when clicked on, leads to a web page. Such links are usually made with the 'a' anchor tag, (or [[ ]] brackets in Wikipedia).


How can you contact James Patterson?

Here's a link. Not sure if it's the correct one: http://www.fanmail.biz/36331.html


How can one redirect from a HTML page?

When creating an HTML page the person must be verse in Hyper Text coding. Generally the code a href will and then typing the address of the site will create a link.


How would you write the HTML statement to create a link that will send mail?

&lt;a href="mailto:yourname@doman.com"&gt;Send email&lt;/a&gt; When a user clicks on "Send email" their default mail client will pop us with your email address in their "To" field so they can send an email.


What is Email link internal link external link anchor link?

An email link is a hyperlink that, when clicked, opens the user's email client to send an email, often pre-filled with a recipient address. An internal link connects to another page within the same website, enhancing navigation and user experience. An external link directs users to a different website, providing additional resources or information. An anchor link is a specific type of internal link that jumps to a specific section within a webpage, usually identified by an HTML anchor tag.


How do you open HTML document?

click on html link


How do you attach a link to an email?

Look right above the body of the email, move your cursor over to a oval type circle you should see add link, (similar to whats above when you post here at Wiki)then copy link into the pop up block, or copy the URL and paste it into the email.


How can you turn this HTML code to a code which opens in a new window please email 4 code mlaw1live co UK?

Answer This webpage in a new window.More simply...Link


How do you link rdbms page with HTML?

RDBMS cannot link directly with HTML. A third party jar is to be required to do the same.


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.