InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to send an E-mail to [email protected] from your Web page. |
|
Answer» <html> <body> <a href="mailto:[email protected]">[email protected]</ > </body> </html> |
|