HTML Example: Link Email
x
<title>HTML Example: Link Email</title>
<p>You can <a href="mailto:homer@example.com">email Homer</a> any time!</p>
<hr>
<p>Adding <code>mailto:</code> followed by the email address turns a link into an email link. This typically launches the user's computer's default mail client with the address automatically populated.</p>
In this example, the left side provides the code used to render the output in the right side.
Feel free to copy and paste the code into your own project and modify as you wish.
About HTML
HTML stands for HyperText Markup Language. It's the markup language that enables us to create web pages. Web pages typically consist of HTML, as well as various other technologies, such as CSS (Cascading Style Sheets - for adding styles to web pages), JavaScript (for adding functionality), and jQuery, to name a few.