2 Answers 2

2

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'"> 
Sign up to request clarification or add additional context in comments.

Comments

0

you can use this too

 <button> <a type="button" href="register.html"> register</a> </button> 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.