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.






 More Web Design Tips