Liz has attended:
Dreamweaver MX Introduction course
Links
How do I create all the different types of links?
RE: Links
Hi Liz,
Hope you enjoyed your Dreamweaver MX Introduction course earlier today.
There are three main types of links.
a) to an internal web page or external web site eg.
<a href="products.html">Products</a>
<a href="https://www.stl-training.co.uk">Best Training</a>
Note: to link to external sites, you must start with the protocol, such as http:// or https://
b) to an e-mail address eg.
<a href="mailto:liz@domain.com">Email me</a>
c) to an anchor (a 'bookmark' within the current page eg.
<a href="#contact">Jump to contact form</a>
Note: you'll need to set up the anchor first in this case:
<a name="contact"></a>
Hope this helps. Good luck with your web development!
Regards, Rich