Back link
Any link that takes a website visitor back to the page that linked them to the current page. With HTML, to create a back link button, use the source code shown below.
<input type=button value="Go Back" onClick="history.go(-1)">
Entering the above code would create a button similar to the below example. Clicking the below button will make the browser go back to the page that linked to this page. For example, if you reached this page from a search engine it would return you back to the search results page.
Also see: Internet definitions, Link, Linkback
