a little help with some HTML code

bengal85

Member
Okay so I need a figure out how to code a button that will take people from page to page..I need to have three separate buttons. I need them to link between the 3 files I have saved on my hard drive.

any one know how to code a button
 

sead12

New Member
Here is a html code snippet for a html button using some javascript in the onClick event. Just change the "page.html" with the page you want to link.

<FORM>
<INPUT TYPE="button" onClick="parent.location='page.html'">
</FORM>
 
Top