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
How is spacing in cells controlled?
How will you add an image of a table at the top of your web page?
Write the HTML code to:
i. Align the content of a cell in a Table to the top
ii. Link to a specific section of another webpage
Create a table having four header rows with yellow background colour, four table body rows having light orange colour, and two footer rows having light green colour. Add table contents on your own.