Create a mail to link in HTML and CSS

Description

The following code shows how to create a mail to link.

Example


<!--   ww w  .j  av a2  s . co m-->
<!DOCTYPE HTML>
<html>
<body>
<p>
This is a mail link:
<a href="mailto:someone@yourDomainName.com?subject=Hi">Send Mail</a>
</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Create a mail to link in HTML and CSS