Creating links in dreamweaver
Hi Tessa,
Hope you enjoyed your course!
In design view of Dreamweaver, select the image or text you would like to turn into a link. Then go to your properties toolbar, and click in the link textbox and type the file, url or e-mail address you're linking to. Alternatively you can click the browse folder button and browse to a local web site file.
The code for linking is using the anchor tag (A), like this:
<a href="http://www.microsofttrianing.net" target="_blank">Click here for Dreamweaver courses</a>
The target parameter controls which window the new link will open up in. In this case, a _blank (new) window. This parameter is optional.
Kind regards,
Rich