How to add email in…
 
Notifications
Clear all

How to add email in html page?

2 Posts
3 Users
2 Likes
196 Views
0
Topic starter

How to add email in html page?

2 Answers
1

To add an email link in an HTML page, use the following format:

Replace "email@example.com" with the desired email address. When users click on the link, their default email client will open, allowing them to compose an email to the specified address.

<a href="mailto:email@example.com">email@example.com</a>
1
HTML Email Tag

While using <a> tag as an email tag, you will use mailto: email address along with href attribute. Following is the syntax of using mailto instead of using http. This code will generate the following link which you can use to send email.

Share: