0

I'm trying to create a link that will lead people to my personal email address. Please, help me out.

Peaksog
  • 1
  • 2

1 Answers1

1

You can make use of the mailto protocol:

<a href="mailto:example@example.com">example@example.com</a>

Clicking the link will attempt to open the default email client of the user, and prepopulate the to field in the email with the address specified.

Obsidian Age
  • 41,205
  • 10
  • 48
  • 71