How can you make an e mail link in html mcq

Here's a MCQ (Multiple Choice Question) on how to make an email link in HTML:

Question: How can you make an email link in HTML?

A) <a href="mailto:[email protected]">Email Link</a> B) <a href="http://[email protected]">Email Link</a> C) <a href="[email protected]">Email Link</a> D) <a href="mailto:">Email Link</a>

Correct answer: A) <a href="mailto:[email protected]">Email Link</a>

Explanation: To make an email link in HTML, you need to use the mailto protocol followed by the email address. The mailto protocol is used to open the default email client on the user's device with the email address pre-filled. The correct syntax is <a href="mailto:[email protected]">Email Link</a>, where [email protected] is the email address you want to link to.

Note: Options B, C, and D are incorrect because they use the http or https protocol, which is used for web pages, not email links.