Hey, I know of two ways to place a link on an HTML page; (1) use the
anchor element, and (2) use javascript to respond to an event (such as
onclick) and set the location.

I recently started using anchors more, and I eventually happened to
try to put an anchor link around an input button, as you can see:

<a href="example.c om"><input type="button" value="Example" /></a>...