Example of HTML email link - HTML CSS HTML

HTML CSS examples for HTML:Anchor Link

Description

Example of HTML email link

Demo Code

ResultView the demo in separate window

Spaces between words should be replaced by %20 to ensure that the browser will display the text correctly.

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML email link</title> 
 </head> <!--  w w w  . j a  v a  2s.c o m-->
 <body> 
  <p>This is an email link: <a href="mailto:someone@mail.com?Subject=Test%20Mail">Send Mail</a> </p> 
  
 </body>
</html>

Related Tutorials