HTML CSS examples for HTML:Anchor Link
Example of HTML email link
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>