2 Answers
You can use hyperlink to link once page to another
<a href="register.htm">Button</a> if you using a <form> you can use form action you can try this.
<form action="http://www.register.htm"> <button type=submit>Register</button> </form> or onclick method
<input type="button" name="b1" value="Register" onclick="location.href='register.htm'">