Forward/Back Buttons
These are your common forward and back buttons.
Highlight and copy/paste into the <body> tag
<!-- STEP ONE: Copy this code into the BODY of your HTML document --> <body> <center> <form> <input type="button" value=" back " onClick="history.go(-1)"> <input type="button" value="forward" onCLick="history.go(1)"> </form> </center>