Untitled
unknown
plain_text
a year ago
578 B
2
Indexable
Never
<!DOCTYPE html> <html> <head> <title>History API Demo</title> </head> <body> <h1>History API Demo</h1> <button id="backButton">Back</button> <button id="forwardButton">Forward</button> <script> // Add event listeners to the back and forward buttons document.getElementById("backButton").addEventListener("click", function() { window.history.back(); // Go back one page }); document.getElementById("forwardButton").addEventListener("click", function() { window.history.forward(); // Go forward one page }); </script> </body> </html>