To create a link to an email address in HTML, you would use the “mailto” scheme within the href attribute in an anchor tag. Here’s an example:
```
Email Me
```
When a user clicks on this link, their email client will open with a new message addressed to the email specified. You can also add subject and body parameters like this:
```
Email Me
```
The subject parameter, as implied by its name, adds a subject to the email and the body parameter adds content to the body of the email. Also note that spaces in the subject and body need to be replaced with ‘%20’.