Your Guide to Professional
Web Site Design and Development

HTML Tips
HTML Codes
Web Development
Web Design Tips
JavaScript Codes
216 Web Safe Colors
CSS Tutorial
JavaScript Tutorial
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design TipsJavascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Creating a Web Page Back and Forward History Button


If you would like to enable your visitors to click a button to navigate their history, place the following codes within the HTML of your web page where you would like the buttons to appear.


Back

<FORM>
<INPUT type="button" value="Back" onclick="history.back();">
</FORM>

Forward

<FORM>
<INPUT type="button" value="Forward" onclick="history.forward();">
</FORM>

Change the text indicated in red to whatever you'd like.

Keep in mind, the forward button will only navigate to a page you have previously visited.

By using back and forward history buttons within your web page, you will be adding additional web page navigation for your visitors.

 More Web Design Tips