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

To create a clickable e‑mail link you must use the <a> element with a mailto: URI scheme, e.g. </a><a href="mailto:xxx@yyy">. The other tags either do not exist in HTML or lack the required scheme, so the stored answer is correct.