newbee question......html and buttons...

liunx

Guest
hi,<br />
I'm totally new to html, i want to use a button on my form ( not a link), and the button will say "continue". When this is clicked, i want to load another page ( page2.html), can somebody show me how to do this?<br />
<br />
<br />
Many thanks....<!--content-->Something like this should do it:<br />
<form action="nextpage.htm"><br />
<p><input type="submit" value="go"></p><br />
</form><!--content--><FORM> <br />
<INPUT type="button" value="Go to my other Page!" name="button" <br />
<br />
onClick="window.location='http://www.enteraddresshere'"> <br />
</FORM><!--content-->Which is invalid and will not work for uses with JavaScript disabled...<!--content-->
 
Back
Top