Reputation: 5339
I have created a button using
<button type="button" class="btn btn-success btn-lg ">Register</button>
How could I give a link to another page when the button is pressed?
Upvotes: 1
Views: 1356
Reputation: 362360
Use a anchor instead, and you can still style it as a button..
<a href="/page.html" class="btn btn-success btn-lg">Register</a>
Bootply: http://www.bootply.com/99320
Upvotes: 2