Multiple choice technology web technology How can you create an e-mail link? <mail href="xxx@yyy"> <mail>xxx@yyy</mail> <a href="xxx@yyy"> <a href="mailto:xxx@yyy"> Reveal answer Fill a bubble to check yourself D Correct answer Explanation Email links use the mailto: protocol within the href attribute of an anchor tag. The correct syntax is where xxx@yyy is the email address. Options A, B, and C are incorrect - there is no tag in HTML, and email links must use the mailto: protocol prefix within the href attribute.