<a href="webpage.html">string and/or images to be displayed as link</a>
ANCHORS:
An anchor is a location on a web page (eg. paragraph #2 line #2) You define an anchor by using the tag. However instead of using the tag A HREF= attribute, you use the NAME= attribute. For example: <a name="anchorname"> This would define the anchor named anchorname.
You can link to anchors the same way you make a normal link. However in place of the url, you type <a href=#nameofanchor>string</a>. Notice that before the anchor name you need to place the # sign.