Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-create-A-mailto-link-with-subject-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<p>
This is another mailto link:
<a href="mailto:someone@example.com?cc=someoneelse@example.com&bcc=andsomeoneelse@example.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!" target="_top">Send mail!</a>
</p>

<p>The link will only work if you have email installed.</p>

<p>(Spaces between words should be replaced by %20 to ensure that the browser will display the text properly)</p>

</body>
</html>

Output :

This is another mailto link: Send mail!

The link will only work if you have email installed.

(Spaces between words should be replaced by %20 to ensure that the browser will display the text properly)