Computer Applications

Write the HTML code to send an email to abc@xyz.com from your web page.

HTML Advanced Features

33 Likes

Answer

<HTML>
<HEAD>
<TITLE>Send Email Example</TITLE>
</HEAD>
<BODY>
<A HREF = "mailto:abc@xyz.com">Send Mail to abc</A>
</BODY>
</HTML>

Answered By

12 Likes


Related Questions