answersLogoWhite

0

What is the correct HTML for creating an email link?

Updated: 10/27/2022
User Avatar

JohnnyPham

Lvl 1
11y ago

Best Answer

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

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

Wiki User

11y ago

<a href= "mailto:abc@mail.com"> Email Example </a>

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the correct HTML for creating an email link?
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;


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


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;


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 can you contact James Patterson?

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


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.


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.


What are the types of linking in HTML?

There are various kinds of linking in HTML. You can link to other webpages, which is the main kind of link. You can link to other parts of the same page. You can link to e-mail addresses. You can link in other files that are used for HTML pages like script files and style sheets.