Back, Forward, Reload

Using JavaScript, you can call on the functions Back, Forward, and Reload from within your webpage.

<HTML>
<HEAD>
<TITLE>My Web Page</TITLE>
</HEAD>
<BODY>

<form>
<input type="button" value="Back" onclick="history.back()">
<input type="button" value="Forward" onclick="history.forward()">
<input type="button" value="Reload" onclick="location.reload()">
</form>
etc...