Question
Easy

In HTML link for e-mail can be created using which of the following?

1
<email=pqr@example.com> This is link to write me an email </email>
2
<email> <SetID> pqr@example.com </SetID> This is link to write me an email </email>
3
<a href="mailto: pqr@example.com"> This is link to write me an email </a>
4
<a herf = "<SetID> pqr@example.com </SetID"> This is link to write me an email </a>
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option C
Explanation

The correct option is (3): The fundamental way to create any hyperlink in HTML, including one for an email address, is by using the anchor tag, `, along with its href (Hypertext Reference) attribute. To specifically create an email link, the value of the href attribute must begin with the mailto: protocol, immediately followed by the target email address, such as "mailto:pqr@example.com"`. This is the standard, well-defined mechanism recognized byтАжRead More