Here I am adding my understandings on subjects related to software development
<html> <head> <script> function goBack() { window.history.go(-1); return false; } </script> </head> <body> <input type="button" value="Back" onclick="goBack()"> </body> </html>