HTML email hyperlink
From w3cyberlearnings
Contents |
HTML - Link to email
Use the <a> tag for send email.
HTML - Syntax Link to email
- EmailAddress: Replace this text with a valid email address
<a href="mailto:EmailAddress">Send Email Now</a>
Example TRY-IT
- When click on the email link, it will force you to open the send mail program. i.e Microsoft Outlook.
<html> <head> <title>Email Link</title> </head> <body> <a href="mailto:[email protected]">Send Mail to me</a> </body> </html>
Related Link
- HTML - Images LINK
- HTML - Email