How To Add A HTML Anchor Link To Your WebsiteHere is a very easy way to learn how to make link anchors on your website!<!-- THIS IS THE LINK TO THE ANCHOR--> <a href="#anchor1">Click Here to Go to First Anchor</a> <!-- THIS IS THE ANCHOR --> <div name="anchor1">Old Way for Anchor</div> <!-- THIS IS THE LINK TO THE ANCHOR--> <a href="#anchor2">Click Here to Go to Second Anchor</a> <!-- THIS IS THE ANCHOR --> <div id="anchor1">New Way for Anchor</div>