Multiple choice technology web technology

How can you create an e-mail link?

  1. <mail href="xxx@yyy">

  2. <a href="xxx@yyy">

  3. <mail>xxx@yyy</mail>

  4. <a href="mailto:xxx@yyy">

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The correct way to create an email link in HTML is using the anchor tag with the mailto: protocol. This tells the browser to open the default email client when the link is clicked.