What is the simplest way to create an tag that links to the previous web page? Basically a simulated back button, but an actual hyperlink. Client-side
You can also use history.back() alongside document.write() to show link only when there is actually somewhere to go back to:
history.back()
document.write()