|
|
Open your page1.html file in Notepad. Save it as page8.html. Now open it in your Browser, to watch the changes as you change your code during the lesson. |
HTML | Result |
---|---|
<address> <b>Page Title</b><br> Last Updated February 31, 1999<br> Web Page by Santa (santa@north.pole.eorg) <br> <a href="http://www.north.pole.org/"> North pole Workshop</a><br> </address> |
Page Title Last Updated February 31, 1999 Web Page by Santa (santa@north.pole.org) North pole Workshop |
Now, suppose someone was reading your page and wanted to send you a comment on how nice your page looked. They would have to write down your e-mail address, launch another program, and send you a message. Wouldn't it be great if you could send email from your Web browser? Well, most web browsers now can!
The way to do this is to create a hypertext link with the mailto type in the URL. Create an email hypertext link like this:
<a href="mailto:Santa@north.pole.org">send an e-mail to Santa</a>When the text send an e-mail to Santa is clicked, the web browser will bring up a screen where you can compose a message and send it to Santa.
Danger! Do not put your email plainly as shown. Use a system to hide it, such as
<a href="mailto:email-santa at north.pole.org">send an e-mail to Santa</a>So humans will see the email address needs to be corrected by removing the 'email-' and changing the 'at' to @
|