This short lesson will teach you how to make more miscellaneous links like e-mail addresses and newsgroups. This is incredibly easy (I hope!).
The tag: <A>
The parameter: HREF
The value: "mailto:your_email"
The linked text: any text you want
The closing tag: </A>
Put together: <A HREF="mailto:your_email">any text you want</A>
<A HREF="mailto:woodchuck@5150.com">E-mail Me</A>
There is only one known variation on the value, but it only works in
Netscape and more recent versions of Internet Explorer.
By adding ?subject=any subject
right after your e-mail address and right before the ending ">
you can automatically set the subject of the e-mail message.
Make sure you remember the ? (question mark). For example, the following link:
<A HREF="mailto:woodchuck@5150.com?subject=HTML Tutorial">E-mail Me</A>
would open a new e-mail message addressed to me, with the subject of HTML Tutorial. Want to test it out? (Don't send this message unless it's useful) E-mail Me
Linking to a newsgroup is the same as to another file or an e-mail message, except for the value.
The tag: <A>
The parameter: HREF
The value: "news:newsgroup_address"
The linked text: any text you want
The closing tag: </A>
Put together: <A HREF="news:newsgroup_address">any text you want</A>
If I wanted to link to the HTML authoring newsgroup, I would type in EXACTLY this:
<A HREF="news:comp.infosystems.www.authoring.html">HTML Authoring Newsgroup</A>