Create a link to send an email in HTML and CSS

Description

The following code shows how to create a link to send an email.

Example


<!--from ww w .j av a2s .  c  om-->
<html>

<head>
<title>A link to send an email</title>
</head>

<body>
<p><a href="mailto:name@example.com">name@example.com</a></p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Create a link to send an email in HTML and CSS