email"."/> email".">
Home >Web Front-end >HTML Tutorial >How to set as email link in HTML
How to set an email link in HTML: 1. Add an a tag to HTML; 2. Provide an email address to the "href" attribute of the a tag, with the syntax format "7f815eb2926c13de3325878916c3e2d3email5db79b134e9f6b82c0b36e0489ee08ed".
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
HTML 3499910bf9dac5ae3c52d5ede7383485 Tag
3499910bf9dac5ae3c52d5ede7383485 tag defines a hyperlink that is used to link from one page to another. The most important attribute of the
3499910bf9dac5ae3c52d5ede7383485 element is the href attribute, which specifies the target of the link.
3499910bf9dac5ae3c52d5ede7383485 The media attribute of the tag specifies the media type of the target URL. Default value: all. Only used if the href attribute is present.
HTML - EMail link
In the a tag, provide an email address, and you can let users send emails. The format is:
<a href= "mailto:jack@kingyar.com"> Send Email </a>
If the user clicks on this link, the email program installed on the user's computer, such as Lotus Notes, Outlook Express, etc., will be launched. Of course, if the user does not install email software, he will not be able to send you emails.
Default email subject and content
You can define a default email subject and content yourself:
<a href="mailto:jack@kingyar.com?subject=Feedback&body=Message"> Send Feedback </a>
You can see it and add it to the web page Email linking is easy. But once a link is added to a web page, a series of troubles such as spam flying everywhere will occur. There are many guys on the Internet who specialize in collecting such mailboxes to send spam. Therefore, if you are planning to put your email link publicly on your website, you should be prepared to fight spam.
[Recommended tutorial: "html video tutorial"]
The above is the detailed content of How to set as email link in HTML. For more information, please follow other related articles on the PHP Chinese website!