HTML - Tips
JavaScript codes:
<form
method="post">
<input type="button" value="Close Window"
onclick="window.close()">
</form> |
close window - button
copy and paste this code where you would like it in your
HTML document
<form>
<input type="button" value="Back to Previous Page"
onClick="javascript: history.go(-1)">
</form> |
back to previous page - button
copy and paste this code where you would
like it in your HTML document