HTML Links
Links are called Anchors, the icon is usually referred to as a chain link or an anchor on a boat. To make a link:
<a href="http://www.google.com">Text To Click</a>
Make sure to close the </a>!
You can also link to files on your own website much without the www,
<a href="mypage2.html">My Page 2</a>
Link New Window
You can make a link open a blank window so it doesn't leave your site, make sure to put the underscore before the word blank!
<a href="url.html" target="_blank">Text Here</a>
