Computer Applications

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

HTML Advanced Features

56 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

23 Likes


Related Questions