Making Links in HTML Hyperlinks

Making Links
Links are what makes the web the web. You can set links for email which will automatically select the users default email and you can link within your own document by naming a location then targeting it.
< a href="URL"></a> Makes a hyperlink
< a href=”” target=? Targets a frame
< a href="mailto:EMAIL"></a> Email link
< a name="NAME"></a> Targeting a location within a document
< a href="#NAME"></a>Links to that target location
Example: <a href="http://www.discoveryvip.com" target="_blank">Links </a>
< a href="mailto:main@hotmail.com">Mail </a>