Multiple choice technology web technology How can you create an e-mail link? <mail href="xxx@yyy"> <a href="xxx@yyy"> <mail>xxx@yyy</mail> <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.