Here's an example of how you can add a back button to your web page using HTML and JavaScript:
html
Copy code
<form>
<input type="button" value="Go Back" onclick="goBack ()">
</form>
<script>
function goBack() {
history.back();
}
</script>
You can place this code wherever you want...
Leave a comment: