the keyword that should be used before the address in the href attribute of the <A>tag for linking text to an email address
Answers
Answer:
<address></address> must be used
This an example :
<address>
Written by <a href="mailto:[email protected]">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
Hope it helped U
Mark me as brainliest
Answer:
The keyword that should be used before the address in the herf attribute of the <A> tag for linking text to an email address is "malito"
Explanation:
The attribute herf must be carried along with <a> tag for linking the document.
Example:
<body>
Return to the <a herf = "index.html">index page</a>
</body>
The keyword that should be used before the address in the herf attribute of the <A> tag for linking text to an email address is "malito"
Example:
<a herf="malito:[email protected]">[email protected]</a>
The value of the herf attribute starts with the keyword malito followed by colon and the e-mail address.
The link,
<a herf="malito:[email protected]">E-mail us</a>
can also be used with any other link whether the content of the <a> element is the visible part of the link.
#SPJ3