An email link is just like a standard link, except that, instead of sending you to another page, the link opens the associated email application so you can email the individual directly. Email links are especially useful for contact emails for individuals, staff members on a company site, and customer service and support feedback.
Email links use the mailto: attribute along with the HRef attribute and the recipient's email address to accomplish this function (see Example 2-12).
<a >email molly</a>
Figure 2-11 shows the results.
If you'd like to make your link a little more user-friendly, you can also add a subject line by following the email address with a question mark (?) and the subject attribute and value (see Example 2-13).
<a >email molly</a>
Figure 2-12 displays the results.
You'll want to consider accessibility features for your links as well, especially the title attribute and a description, and tabindex if the sequential order of links on a given page is particularly important to your site visitors (see Example 2-14).
<a title="email molly regarding bookfeedback" tabindex="3">email molly</a>
The title text now appears in a ToolTip as the mouse passes over the link. The tabindex is set to 3, so the site visitor can press the Tab key three times to reach the link, a very helpful offering to those individuals with mobility impairments.