HTML (22)
Email from Browser
This is a convenient way to allow other users to communicate with you via email.
Most of the browsers support the MAILTO function.
Tag: Send feedback to <a href ="mailto:abc@gmail.com?
subject = 'feedback' ">mailto:abc@gmail.com</a>
Example ↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
Send feedback to <a href ="mailto:abc@gmail.com?
subject = 'feedback' ">mailto:abc@gmail.com</a>
</body>
0 Comments