CBSE Class 10 Computer Applications
Question 35 of 81
Images, Links and Tables — Question 7
Back to all questions 7
Question Question 7
Write the HTML code to send an email to abc@xyz.com from your web page.
<HTML>
<HEAD>
<TITLE>Send Email Example</TITLE>
</HEAD>
<BODY>
<A HREF = "mailto:abc@xyz.com">Send Mail to abc</A>
</BODY>
</HTML>